-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.app.json
49 lines (49 loc) · 1.32 KB
/
tsconfig.app.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"extends": "./tsconfig.json",
"compilerOptions": {
"strict": true,
"strictPropertyInitialization": false,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"lib": ["es2017", "dom"],
"target": "es5",
"module": "esnext",
"outDir": "./out-tsc/app",
"baseUrl": ".",
"paths": {
"@cedu/*": ["./src/app/*"],
"@cedu-routes/*": ["./src/app/routes/*"],
"@cedu-services/*": ["./src/app/services/*"],
"@cedu-models/*": ["./src/app/models/*"],
"@cedu-pipes/*": ["./src/app/pipes/*"],
"@cedu-guards/*": ["./src/app/guards/*"],
"@cedu-helpers/*": ["./src/app/helpers/*"],
"@cedu-directives/*": ["./src/app/directives/*"],
"@cedu-constants/*": ["./src/app/constants/*"],
"@cedu-shared-modules/*": ["./src/app/shared/modules/*"],
"@cedu-shared-layouts/*": ["./src/app/shared/layout/*"],
"@cedu-store/*": ["./src/app/store/*"]
},
"types": ["node"],
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.d.ts"
],
"exclude": [
"./node_modules",
"**/test.ts",
"**/*.spec.ts",
"**/setup-jest.ts"
],
"angularCompilerOptions": {
"enableIvy": false
}
}