humainflow-web/tsconfig.json

66 lines
1.5 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": {
"baseUrl": "./src",
"paths": {
"@pages/*": [
"app/pages/*"
],
"@layouts/*": [
"app/layouts/*"
],
"@services/*": [
"app/services/*"
],
"@environment": [
"environments/environment"
],
"@models/*": [
"app/models/*"
],
"@utilities/*": [
"app/utilities/*"
],
"@guards/*": [
"app/guards/*"
],
"@shared/*": [
"app/shared/*"
],
"@assets/*": [
"/assets/*"
],
"@stores/*": [
"app/stores/*"
]
},
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"isolatedModules": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "preserve"
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
},
"files": [],
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.spec.json"
}
]
}