ngx-data-ui/tsconfig.json

42 lines
1.2 KiB
JSON
Raw Normal View History

2024-08-27 17:05:56 -04:00
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
2024-09-02 09:25:36 -04:00
"paths": {
"@openharbor/ngx-data-ui-core": [
"./projects/core/src/public-api"
],
"@openharbor/ngx-data-ui-md": [
"./projects/md-ui/src/public-api"
]
},
2024-08-27 17:05:56 -04:00
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": [
"ES2022",
"dom"
]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}