tsconfig.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* To learn more about this file see: https://angular.io/config/tsconfig. */
  2. {
  3. "compileOnSave": false,
  4. "compilerOptions": {
  5. "baseUrl": "./",
  6. "outDir": "./dist/out-tsc",
  7. "forceConsistentCasingInFileNames": true,
  8. "strict": false,
  9. "noImplicitOverride": true,
  10. "noPropertyAccessFromIndexSignature": true,
  11. "noImplicitReturns": true,
  12. "noFallthroughCasesInSwitch": true,
  13. "sourceMap": true,
  14. "declaration": false,
  15. "downlevelIteration": true,
  16. "experimentalDecorators": true,
  17. "allowSyntheticDefaultImports": true,
  18. "moduleResolution": "node",
  19. "importHelpers": true,
  20. "target": "es2017",
  21. "module": "esnext",
  22. "typeRoots": [
  23. "node_modules/@types",
  24. "node_modules/date-fns/*.d.ts",
  25. "node_modules/ng-zorro-antd/*.d.ts"
  26. ],
  27. "lib": [
  28. "es2020",
  29. "dom"
  30. ]
  31. },
  32. "angularCompilerOptions": {
  33. "enableI18nLegacyMessageIdFormat": false,
  34. "strictInjectionParameters": true,
  35. "strictInputAccessModifiers": true,
  36. "strictTemplates": true,
  37. "esModuleInterop": true,
  38. "allowSyntheticDefaultImports": true
  39. }
  40. }