forked from crexi-dev/angular-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (35 loc) · 887 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
35
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": false,
"importHelpers": true,
"lib": [
"es2018",
"dom"
],
"module": "es2020",
"moduleResolution": "node",
"newLine": "lf",
"noImplicitAny": true,
"noUnusedLocals": true,
"outDir": "./dist",
"paths": {
"@auth/*": ["src/app/core/auth/*"],
"@core/*": ["src/app/core/*"],
"@features/*": ["src/app/features/*"],
"@interfaces": ["src/app/app.interfaces"],
"@store/*": ["src/app/store/*"],
"content/*": ["src/content/*"]
},
"sourceMap": true,
"target": "es2015"
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}