tsconfig.json 754 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "strict": true,
  5. "noImplicitOverride": true,
  6. "noPropertyAccessFromIndexSignature": true,
  7. "noImplicitReturns": true,
  8. "noFallthroughCasesInSwitch": true,
  9. "skipLibCheck": true,
  10. "isolatedModules": true,
  11. "experimentalDecorators": true,
  12. "importHelpers": true,
  13. "target": "ES2022",
  14. "module": "preserve"
  15. },
  16. "angularCompilerOptions": {
  17. "enableI18nLegacyMessageIdFormat": false,
  18. "strictInjectionParameters": true,
  19. "strictInputAccessModifiers": true,
  20. "typeCheckHostBindings": true,
  21. "strictTemplates": true
  22. },
  23. "files": [],
  24. "references": [
  25. {
  26. "path": "./tsconfig.app.json"
  27. },
  28. {
  29. "path": "./tsconfig.spec.json"
  30. }
  31. ]
  32. }