forked from sourcefuse/angular-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 1.11 KB
/
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
35
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2019",
"typeRoots": ["node_modules/@types"],
"lib": ["ES2019", "dom"],
"paths": {
"@main-project/boiler/env/*": [
"projects/arc/src/environments/*"
],
"@main-project/boiler/*": ["projects/arc/src/app/*"],
"@project-lib/core/*": ["projects/arc-lib/src/lib/core/*"],
"@project-lib/components/*": ["projects/arc-lib/src/lib/components/*"],
"@project-lib/theme/*": ["projects/arc-lib/src/lib/theme/*"],
"@project-lib/app-config": [
"projects/arc-lib/src/lib/app-config/index.ts"
],
"@project-lib/auth/*": ["projects/arc-lib/src/lib/components/auth/*"],
"@project-lib/assets/*": ["projects/arc-lib/src/lib/assets/*"]
}
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}