2020-10-02 15:20:00 +00:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "../../out-tsc/lib",
|
|
|
|
"target": "es2015",
|
2020-10-02 15:33:25 +00:00
|
|
|
"module": "es2015",
|
|
|
|
"moduleResolution": "node",
|
2020-10-02 15:20:00 +00:00
|
|
|
"declaration": true,
|
2020-10-02 15:33:25 +00:00
|
|
|
"sourceMap": true,
|
2020-10-02 15:20:00 +00:00
|
|
|
"inlineSources": true,
|
2020-10-02 15:33:25 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"importHelpers": true,
|
2020-10-02 15:20:00 +00:00
|
|
|
"types": [],
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2018"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"skipTemplateCodegen": true,
|
|
|
|
"strictMetadataEmit": true,
|
2020-10-02 15:33:25 +00:00
|
|
|
"fullTemplateTypeCheck": true,
|
|
|
|
"strictInjectionParameters": true,
|
|
|
|
"enableResourceInlining": true,
|
|
|
|
"enableIvy": false
|
2020-10-02 15:20:00 +00:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"src/test.ts",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|