tsconfig.json 915 B

123456789101112131415161718192021222324252627
  1. /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
  2. /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
  3. {
  4. "compileOnSave": false,
  5. "compilerOptions": {
  6. "outDir": "./dist/out-tsc",
  7. "strict": true,
  8. "noImplicitOverride": true,
  9. "noPropertyAccessFromIndexSignature": true,
  10. "noImplicitReturns": true,
  11. "noFallthroughCasesInSwitch": true,
  12. "skipLibCheck": true,
  13. "isolatedModules": true,
  14. "esModuleInterop": true,
  15. "experimentalDecorators": true,
  16. "moduleResolution": "bundler",
  17. "importHelpers": true,
  18. "target": "ES2022",
  19. "module": "ES2022"
  20. },
  21. "angularCompilerOptions": {
  22. "enableI18nLegacyMessageIdFormat": false,
  23. "strictInjectionParameters": true,
  24. "strictInputAccessModifiers": true,
  25. "strictTemplates": true
  26. }
  27. }