mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-15 08:22:50 -05:00
42 lines
1.2 KiB
JSON
42 lines
1.2 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": {
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"target": "ES2022",
|
|
"module": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@app/*": ["src/app/*"],
|
|
"@ui": ["src/app/ui/index"],
|
|
"@ui/*": ["src/app/ui/*"],
|
|
"@core/*": ["src/app/core/*"],
|
|
"@shared/*": ["src/app/shared/*"],
|
|
"@features/*": ["src/app/features/*"],
|
|
"@layout/*": ["src/app/layout/*"],
|
|
"@styles/*": ["src/styles/*"]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"strictTemplates": true
|
|
},
|
|
"files": [],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.app.json"
|
|
}
|
|
]
|
|
}
|