dashboard/tsconfig.json

40 lines
1.4 KiB
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,
"module": "es2020",
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,
2021-08-02 15:06:09 +00:00
"skipLibCheck": true,
"paths": {
2020-08-11 13:51:06 +00:00
"@dsh/components/*": ["src/components/*"],
2021-01-25 16:27:22 +00:00
"@dsh/components": ["src/components"],
"@dsh/pipes/*": ["src/pipes/*"],
2021-01-25 16:27:22 +00:00
"@dsh/pipes": ["src/pipes"],
"@dsh/app/shared/*": ["src/app/shared/*"],
2021-01-25 16:27:22 +00:00
"@dsh/app/shared": ["src/app/shared"],
"@dsh/api/*": ["src/app/api/*"],
2021-01-25 16:27:22 +00:00
"@dsh/api": ["src/app/api"],
"@dsh/app/sections/tokens": ["src/app/sections/tokens.ts"],
"@dsh/type-utils": ["src/type-utils/index.ts"],
"@dsh/utils": ["src/utils/index.ts"],
"@dsh/operators": ["src/app/custom-operators/index.ts"]
}
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
}