-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
69 lines (69 loc) · 2.08 KB
/
tsconfig.json
File metadata and controls
69 lines (69 loc) · 2.08 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "es2020",
"esModuleInterop": true,
"lib": [
"es2022",
"dom"
],
"paths": {
"@app/*": ["src/app/*"],
"@app/domain": ["src/app/domain"],
"@app/domain/*": ["src/app/domain/*"],
"@app/core/hal/services": ["src/app/core/hal/services"],
"@app/core/hal/*": ["src/app/core/hal/*"],
"@app/core/auth/*": ["src/app/core/auth/*"],
"@app/core/account/*": ["src/app/core/account/*"],
"@app/core/config/*": ["src/app/core/config/*"],
"@app/components/shared/*": ["src/app/components/shared/*"],
"@app/frontend-gui/*": ["src/app/frontend-gui/*"],
"@app/material-module": ["src/app/material-module"],
"@config": ["src/config.ts"],
"@environments/*": ["src/environments/*"]
},
"useDefineForClassFields": false,
"forceConsistentCasingInFileNames": true,
"strict": false,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": false,
"strictInputAccessModifiers": false,
"strictTemplates": true
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.ts",
"src/**/*.d.ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts",
"src/environments/environment.prod.ts",
"src/environments/environment.testdeployment.ts",
"src/app/core/hal/config/index.ts",
"src/app/core/hal/resource/index.ts",
"src/app/core/hal/rest/index.ts",
"src/app/core/public-api.ts",
"src/app/core/hal/config/external-configuration.model.ts"
]
}