ts-data/tsconfig.json

39 lines
1.1 KiB
JSON
Raw Normal View History

2024-08-30 13:19:32 -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. */
2019-09-04 23:40:01 -04:00
{
"compileOnSave": false,
"compilerOptions": {
2024-08-30 13:19:32 -04:00
"paths": {
"@openharbor/data": [
"./projects/data/src/public-api"
]
},
2019-09-04 23:40:01 -04:00
"outDir": "./dist/out-tsc",
2024-08-30 13:19:32 -04:00
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"esModuleInterop": true,
2019-09-04 23:40:01 -04:00
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
2024-08-30 13:19:32 -04:00
"moduleResolution": "bundler",
2019-09-04 23:40:01 -04:00
"importHelpers": true,
2024-08-30 13:19:32 -04:00
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
2019-09-04 23:40:01 -04:00
"lib": [
2024-08-30 13:19:32 -04:00
"ES2022",
2019-09-04 23:40:01 -04:00
"dom"
2024-08-30 13:19:32 -04:00
]
2019-09-04 23:40:01 -04:00
},
"angularCompilerOptions": {
2024-08-30 13:19:32 -04:00
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
2019-09-04 23:40:01 -04:00
}
}