tsconfig.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* To learn more about this file see: https://angular.io/config/tsconfig. */
  2. {
  3. "compileOnSave": false,
  4. "compilerOptions": {
  5. "outDir": "./dist/out-tsc",
  6. "forceConsistentCasingInFileNames": true,
  7. "strict": true,
  8. "strictPropertyInitialization": false,
  9. "strictNullChecks": false,
  10. "noImplicitOverride": false,
  11. "noImplicitAny": false,
  12. "noPropertyAccessFromIndexSignature": false,
  13. "noImplicitReturns": false,
  14. "noImplicitThis": false,
  15. "noUncheckedIndexedAccess": false,
  16. "noFallthroughCasesInSwitch": true,
  17. "skipLibCheck": true,
  18. "esModuleInterop": true,
  19. "sourceMap": true,
  20. "declaration": false,
  21. "experimentalDecorators": true,
  22. "moduleResolution": "node",
  23. "importHelpers": true,
  24. "target": "ES2022",
  25. "module": "ES2022",
  26. "useDefineForClassFields": false,
  27. "resolveJsonModule": true,
  28. "lib": [
  29. "ES2022",
  30. "dom"
  31. ]
  32. },
  33. "angularCompilerOptions": {
  34. "enableI18nLegacyMessageIdFormat": false,
  35. "strictInjectionParameters": true,
  36. "strictInputAccessModifiers": true,
  37. "strictTemplates": true
  38. }
  39. }