26 lines
742 B
JSON
26 lines
742 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"sourceMap": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"removeComments": false,
|
||
|
"noImplicitAny": false,
|
||
|
"skipLibCheck": true,
|
||
|
"suppressImplicitAnyIndexErrors": true,
|
||
|
"outDir": "target/www/app",
|
||
|
"lib": ["es7", "dom"],
|
||
|
"typeRoots": ["node_modules/@types"],
|
||
|
"baseUrl": "./",
|
||
|
"paths": {
|
||
|
"app/*": ["src/main/webapp/app/*"]
|
||
|
},
|
||
|
"importHelpers": true,
|
||
|
"allowJs": true
|
||
|
},
|
||
|
"include": ["src/main/webapp/app", "src/test/javascript/"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|