tsconfig.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. "resolveJsonModule": true,
  18. "esModuleInterop": true
  19. },
  20. "angularCompilerOptions": {
  21. "enableI18nLegacyMessageIdFormat": false,
  22. "strictInjectionParameters": true,
  23. "strictInputAccessModifiers": true,
  24. "typeCheckHostBindings": true,
  25. "strictTemplates": true
  26. },
  27. "files": [],
  28. "references": [
  29. {
  30. "path": "./tsconfig.app.json"
  31. },
  32. {
  33. "path": "./tsconfig.spec.json"
  34. }
  35. ]
  36. }