tsconfig.json.template 923 B

1234567891011121314151617181920212223242526
  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": {<% if (strict) { %>
  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<% if (strict) { %>,
  20. "strictInjectionParameters": true,
  21. "strictInputAccessModifiers": true,
  22. "typeCheckHostBindings": true,
  23. "strictTemplates": true<% } %>
  24. },
  25. "files": []
  26. }