2017-02-22 18:13:21 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
2021-04-18 11:45:29 +01:00
|
|
|
/* We need to keep the metadata to support JIT compilation. */
|
2017-02-22 18:13:21 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"lib": [ "es2015", "dom" ],
|
|
|
|
"noImplicitAny": true,
|
2018-06-20 14:01:23 +03:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true
|
2017-02-22 18:13:21 +00:00
|
|
|
},
|
|
|
|
"compileOnSave": true,
|
|
|
|
"exclude": [
|
2017-08-15 10:22:55 -07:00
|
|
|
"**/*-aot.ts",
|
2021-04-24 13:26:02 +03:00
|
|
|
"node_modules/",
|
|
|
|
"universal/"
|
2017-02-22 18:13:21 +00:00
|
|
|
]
|
|
|
|
}
|