1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-10-26 08:55:23 +03:00
openuds-gui/tsconfig.json

34 lines
898 B
JSON
Raw Normal View History

2023-01-16 21:07:50 +03:00
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
2020-10-15 05:40:49 +03:00
"compileOnSave": false,
"compilerOptions": {
2023-01-16 21:07:50 +03:00
"baseUrl": "./",
2020-10-15 05:40:49 +03:00
"outDir": "./dist/out-tsc",
2023-01-16 21:07:50 +03:00
"forceConsistentCasingInFileNames": true,
2024-06-20 05:24:03 +03:00
"esModuleInterop": true,
2023-01-16 21:07:50 +03:00
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2020-10-15 05:40:49 +03:00
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
2023-01-16 21:07:50 +03:00
"moduleResolution": "node",
"importHelpers": true,
2022-12-27 16:52:16 +03:00
"target": "ES2022",
2023-01-16 21:07:50 +03:00
"module": "ES2022",
"useDefineForClassFields": false,
2020-10-15 05:40:49 +03:00
"lib": [
2023-01-16 21:07:50 +03:00
"ES2022",
2020-10-15 05:40:49 +03:00
"dom"
2023-01-16 21:07:50 +03:00
]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
2020-10-15 05:40:49 +03:00
}
2023-01-16 21:07:50 +03:00
}