Files

81 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2024-12-27 16:00:31 +03: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. */
2021-12-06 10:26:58 +03:00
{
2025-12-04 21:07:18 +03:30
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true,
"typeCheckHostBindings": true
},
2025-01-07 17:29:51 +03:00
"compileOnSave": false,
"compilerOptions": {
2025-12-04 21:07:18 +03:30
"baseUrl": "./",
2025-01-07 17:29:51 +03:00
"experimentalDecorators": true,
"importHelpers": true,
2025-12-04 21:07:18 +03:30
"isolatedModules": true,
"module": "preserve",
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
2025-07-24 18:25:37 +03:00
"paths": {
"@/*": [
"src/app/*"
2025-12-04 21:07:18 +03:30
],
"AppServices": [
"src/app/shared/services"
],
"AppServices/*": [
"src/app/shared/services/*"
],
"components": [
"src/app/shared/components"
],
"components/*": [
"src/app/shared/components/*"
],
"modules": [
"src/app/modules"
],
"modules/*": [
"src/app/modules/*"
],
"services": [
"src/app/core/services"
],
"services/*": [
"src/app/core/services/*"
],
"types": [
"src/app/core/models"
],
"types/*": [
"src/app/core/models/*"
],
"uikit": [
"src/app/shared/uikit"
],
"uikit/*": [
"src/app/shared/uikit/*"
2025-07-24 18:25:37 +03:00
]
2025-12-04 21:07:18 +03:30
},
"skipLibCheck": true,
"strict": true,
"target": "ES2022",
"typeRoots": [
"./node_modules/@types",
"./node_modules/primeng"
]
2025-01-07 17:29:51 +03:00
},
2025-12-04 21:07:18 +03:30
"files": [],
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.spec.json"
}
]
2024-12-27 16:00:31 +03:00
}