forked from js-machine/js-machine-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 864 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2018", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"strict": true,
"paths": {
"@js-machine-app/models": ["libs/models/src/index.ts"],
"@js-machine-app/api/*": ["apps/api/src/app/*"],
"@js-machine-app/admin/*": ["apps/js-machine-admin/src/app/*"],
"@js-machine-app/front/*": ["apps/js-machine-front/src/app/*"],
"@js-machine-app/data-service": ["libs/data-service/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}