tsconfig.json 780 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "outDir": "./dist/out-tsc",
  5. "strict": true,
  6. "noImplicitOverride": true,
  7. "noPropertyAccessFromIndexSignature": true,
  8. "noImplicitReturns": true,
  9. "noFallthroughCasesInSwitch": true,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "sourceMap": true,
  13. "declaration": false,
  14. "experimentalDecorators": true,
  15. "moduleResolution": "node",
  16. "importHelpers": true,
  17. "target": "ES2022",
  18. "module": "ES2022",
  19. "useDefineForClassFields": false,
  20. "lib": [
  21. "ES2022",
  22. "dom"
  23. ]
  24. },
  25. "angularCompilerOptions": {
  26. "enableI18nLegacyMessageIdFormat": false,
  27. "strictInjectionParameters": true,
  28. "strictInputAccessModifiers": true,
  29. "strictTemplates": true
  30. }
  31. }