-
-
Notifications
You must be signed in to change notification settings - Fork 541
/
tsconfig.json
34 lines (34 loc) · 936 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"noImplicitAny": false,
"noUnusedLocals": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2018",
"sourceMap": true,
"allowJs": false,
"skipLibCheck": false,
"composite": true,
"baseUrl": "./packages",
"paths": {
"@nestjsx/crud": ["crud/src"],
"@nestjsx/crud-typeorm": ["crud-typeorm/src"],
"@nestjsx/crud-request": ["crud-request/src"],
"@nestjsx/util": ["util/src"],
"@nestjsx/crud/*": ["crud/src/*"],
"@nestjsx/crud-typeorm/*": ["crud-typeorm/src/*"],
"@nestjsx/crud-request/*": ["crud-request/src/*"],
"@nestjsx/util/*": ["util/src/*"]
}
},
"references": [
{ "path": "crud" },
{ "path": "crud-typeorm" },
{ "path": "crud-request" },
{ "path": "util" }
]
}