tsconfig.json 1.1 KB

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