tsconfig.json 775 B

123456789101112131415161718192021222324252627282930313233
  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. "allowJs": true
  16. },
  17. "angularCompilerOptions": {
  18. "enableI18nLegacyMessageIdFormat": false,
  19. "strictInjectionParameters": true,
  20. "strictInputAccessModifiers": true,
  21. "typeCheckHostBindings": 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. }