dashboard/tsconfig.json

32 lines
989 B
JSON
Raw Normal View History

2018-11-27 09:06:26 +00:00
{
2018-11-30 13:26:03 +00:00
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
2019-06-26 13:12:03 +00:00
"downlevelIteration": true,
2018-11-30 13:26:03 +00:00
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
2019-06-26 13:12:03 +00:00
"module": "esnext",
2018-11-30 13:26:03 +00:00
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
2019-06-26 13:12:03 +00:00
"target": "es2015",
2018-11-30 13:26:03 +00:00
"typeRoots": ["node_modules/@types"],
2020-05-08 15:19:45 +00:00
"lib": ["esnext", "dom"],
2019-04-09 14:39:03 +00:00
"allowSyntheticDefaultImports": true,
2019-08-12 13:34:18 +00:00
"resolveJsonModule": true,
"paths": {
2020-08-11 13:51:06 +00:00
"@dsh/components/*": ["src/components/*"],
"@dsh/pipes/*": ["src/pipes/*"],
"@dsh/app/shared/*": ["src/app/shared/*"],
"@dsh/api/*": ["src/app/api/*"],
"@dsh/api-codegen/*": ["src/app/api-codegen/*"]
}
2020-03-30 13:40:22 +00:00
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
2018-11-30 13:26:03 +00:00
}
2018-11-27 09:06:26 +00:00
}