12345678910111213141516171819202122232425262728293031 |
- {
- "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
- }
- }
|