22 lines
563 B
JSON
22 lines
563 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"sourceMap": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"removeComments": false,
|
||
|
"noImplicitAny": false,
|
||
|
"suppressImplicitAnyIndexErrors": true,
|
||
|
"outDir": "target/www/app",
|
||
|
"lib": ["es6", "dom"],
|
||
|
"typeRoots": [
|
||
|
"node_modules/@types"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"src/main/webapp/app",
|
||
|
"src/test/javascript"
|
||
|
]
|
||
|
}
|