tsconfig.json 1021 B

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