ngx-data/tsconfig.json

33 lines
689 B
JSON
Raw Normal View History

2019-09-04 22:58:17 -04:00
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
2024-08-25 20:11:31 -04:00
"esModuleInterop": true,
2019-09-04 22:58:17 -04:00
"declaration": false,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "node",
"importHelpers": true,
2024-08-25 19:53:09 -04:00
"target": "es2020",
2019-09-04 22:58:17 -04:00
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
2019-12-06 10:26:01 -05:00
"dom",
"esnext.asynciterable"
2019-09-04 23:00:44 -04:00
],
"paths": {
2024-08-25 18:31:49 -04:00
"@openharbor/ngx-data": [
"./projects/openharbor/ngx-data/src/public-api"
2019-09-04 23:00:44 -04:00
],
}
2019-09-04 22:58:17 -04:00
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
2024-08-25 18:31:49 -04:00
}