FarmMapsLib/projects/common/tsconfig.lib.json

40 lines
823 B
JSON
Raw Normal View History

2019-07-12 11:07:31 +00:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/lib",
"target": "es2015",
"module": "es2015",
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"types": [],
2019-07-12 11:07:31 +00:00
"lib": [
"dom",
"es2018"
2019-07-15 14:54:19 +00:00
],
"paths": {
"@angular/*": [
"node_modules/@angular/*"
]
}
2019-07-12 11:07:31 +00:00
},
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
2019-07-16 14:15:40 +00:00
"enableResourceInlining": true
2019-07-12 11:07:31 +00:00
},
"exclude": [
"src/test.ts",
"**/*.spec.ts"
2019-07-15 14:54:19 +00:00
]
2019-07-12 11:07:31 +00:00
}