| 1234567891011121314151617181920212223242526272829303132 |
- /* 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": "node",
- "importHelpers": true,
- "target": "ES2022",
- "module": "ES2022",
- "baseUrl": "./",
- "paths": {
- "base-core": ["../ng-base/dist/base-core"],
- "base-core/*": ["../ng-base/dist/base-core/*"]
- }
- },
- "angularCompilerOptions": {
- "enableI18nLegacyMessageIdFormat": false,
- "strictInjectionParameters": true,
- "strictInputAccessModifiers": true,
- "strictTemplates": true
- }
- }
|