tsconfig.json 957 B

123456789101112131415161718192021222324252627282930313233
  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. "strict": true,
  7. "noImplicitOverride": true,
  8. "noPropertyAccessFromIndexSignature": true,
  9. "noImplicitReturns": true,
  10. "noFallthroughCasesInSwitch": true,
  11. "skipLibCheck": true,
  12. "isolatedModules": true,
  13. "experimentalDecorators": true,
  14. "importHelpers": true,
  15. "target": "ES2022",
  16. "module": "preserve"
  17. },
  18. "angularCompilerOptions": {
  19. "enableI18nLegacyMessageIdFormat": false,
  20. "strictInjectionParameters": true,
  21. "strictInputAccessModifiers": true,
  22. "strictTemplates": true
  23. },
  24. "files": [],
  25. "references": [
  26. {
  27. "path": "./tsconfig.app.json"
  28. },
  29. {
  30. "path": "./tsconfig.spec.json"
  31. }
  32. ]
  33. }