AltitudeWeb/frontend/tsconfig.json
akastijn ebe66c87c0 Rework folder structure in frontend
Pages are now grouped per group they appear in on in the header (where possible)
Utilities used by multiple pages in the project are grouped in folders such as services/pipes/etc
2025-07-04 19:50:21 +02:00

58 lines
1.4 KiB
JSON

/* 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,
"isolatedModules": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"baseUrl": "src",
"paths": {
"@shared-components/*": [
"app/shared-components/*"
],
"@services/*": [
"app/services/*"
],
"@header/*": [
"app/pages/header/header/*"
],
"@custom-types/*": [
"app/types/*"
],
"@pipes/*": [
"app/pipes/*"
],
"@pages/*": [
"app/pages/*"
],
"@api": [
"api"
],
"@api/*": [
"api/*"
],
"@environment": [
"environments/environment"
]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}