Files
spring-flo/tsconfig.json
BoykoAlex a42009c269 Upgrade to Angular 9
Build with ng-packagr. Base example on ng-packagr example project
2020-02-20 12:20:58 -05:00

28 lines
555 B
JSON

{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"inlineSources": true,
"declaration": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"stripInternal": true,
"lib": [
"es2015",
"dom"
],
"typeRoots": [
"node_modules/@types",
"src/lib/@types"
],
"strictNullChecks":false
},
"angularCompilerOptions": {
"enableIvy": true
}
}