31 lines
822 B
JSON
31 lines
822 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"module": "es2015",
|
||
|
"moduleResolution": "node",
|
||
|
"sourceMap": false,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"removeComments": false,
|
||
|
"noImplicitAny": false,
|
||
|
"suppressImplicitAnyIndexErrors": true,
|
||
|
"skipLibCheck": true,
|
||
|
"outDir": "target/www/app",
|
||
|
"lib": ["es7", "dom"],
|
||
|
"typeRoots": [
|
||
|
"node_modules/@types"
|
||
|
],
|
||
|
"baseUrl": "./",
|
||
|
"paths": {
|
||
|
"app/*": ["src/main/webapp/app/*"]
|
||
|
},
|
||
|
"importHelpers": true
|
||
|
},
|
||
|
"angularCompilerOptions": {
|
||
|
"genDir": "target/aot",
|
||
|
"skipMetadataEmit" : true,
|
||
|
"fullTemplateTypeCheck": true,
|
||
|
"preserveWhitespaces": true
|
||
|
}
|
||
|
}
|