ngx-data/tsconfig.json

34 lines
723 B
JSON
Raw Normal View History

2019-09-04 22:58:17 -04:00
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "node",
"importHelpers": true,
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
2019-09-04 23:00:44 -04:00
],
"paths": {
"@poweredsoft/ngx-data": [
"dist/poweredsoft/ngx-data"
],
"@poweredsoft/ngx-data/*": [
"dist/poweredsoft/ngx-data/*"
]
}
2019-09-04 22:58:17 -04:00
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
2019-09-04 23:00:44 -04:00
}