tsconfig.json 989 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "noImplicitOverride": true,
  9. "noPropertyAccessFromIndexSignature": true,
  10. "noImplicitReturns": true,
  11. "noFallthroughCasesInSwitch": true,
  12. "skipLibCheck": true,
  13. "esModuleInterop": true,
  14. "sourceMap": true,
  15. "declaration": false,
  16. "experimentalDecorators": true,
  17. "moduleResolution": "node",
  18. "importHelpers": true,
  19. "target": "ES2022",
  20. "module": "ES2022",
  21. "paths": {
  22. "icons-angular": [
  23. "./dist/icons-angular"
  24. ]
  25. },
  26. "useDefineForClassFields": false,
  27. "lib": [
  28. "ES2022",
  29. "dom"
  30. ]
  31. },
  32. "angularCompilerOptions": {
  33. "enableI18nLegacyMessageIdFormat": false,
  34. "strictInjectionParameters": true,
  35. "strictInputAccessModifiers": true,
  36. "strictTemplates": true
  37. }
  38. }