-
-
Notifications
You must be signed in to change notification settings - Fork 140
/
tsconfig.json
34 lines (34 loc) · 916 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
{
"compilerOptions": {
"baseUrl": "src/main/webapp/",
"outDir": "target/classes/static/",
"forceConsistentCasingInFileNames": true,
"strict": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"removeComments": false,
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"target": "es2020",
"module": "es2020",
"lib": ["es2018", "dom"],
"paths": {
"app/*": ["app/*"]
}
},
"angularCompilerOptions": {
"genDir": "target/classes/aot",
"fullTemplateTypeCheck": true,
"preserveWhitespaces": true
}
}