-
Notifications
You must be signed in to change notification settings - Fork 20
/
tsconfig.base.json
30 lines (30 loc) · 955 Bytes
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "es2020",
"moduleResolution": "node",
"importHelpers": true,
"target": "es2015",
"typeRoots": ["node_modules/@types"],
"lib": ["es2018", "dom"],
"paths": {
"@angular-dream/toh": ["libs/toh/src/index.ts"],
"@angular-dream/dashboard": ["libs/dashboard/src/index.ts"],
"@angular-dream/feature-app-view": ["libs/feature-app-view/src/index.ts"],
"@angular-dream/app-utils": ["libs/app-utils/src/index.ts"],
"@angular-dream/counter": ["libs/counter/src/index.ts"],
"@angular-dream/scoreboard": ["libs/scoreboard/src/index.ts"]
},
"rootDir": "."
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}