tsconfig.json 992 B

12345678910111213141516171819202122232425262728293031323334
  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. "typeCheckHostBindings": true,
  23. "strictTemplates": true
  24. },
  25. "files": [],
  26. "references": [
  27. {
  28. "path": "./tsconfig.app.json"
  29. },
  30. {
  31. "path": "./tsconfig.spec.json"
  32. }
  33. ]
  34. }