2017-02-22 13:13:21 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2019-08-20 13:52:31 -04:00
|
|
|
"lib": [
|
|
|
|
"es2015",
|
|
|
|
"dom"
|
|
|
|
],
|
2017-02-22 13:13:21 -05:00
|
|
|
"noImplicitAny": true,
|
2018-06-20 07:01:23 -04:00
|
|
|
"skipLibCheck": true,
|
2020-04-06 15:57:58 -04:00
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
2017-02-22 13:13:21 -05:00
|
|
|
},
|
|
|
|
"compileOnSave": true,
|
|
|
|
"exclude": [
|
|
|
|
"node_modules/*",
|
|
|
|
"**/*-aot.ts"
|
2020-04-06 15:57:58 -04:00
|
|
|
]
|
|
|
|
}
|