tsconfig.base.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "compilerOptions": {
  4. "target": "es2019",
  5. "module": "esnext",
  6. "allowJs": true,
  7. "skipLibCheck": true,
  8. "importHelpers": true,
  9. "sourceMap": true,
  10. "removeComments": false,
  11. "noEmit": true,
  12. "isolatedModules": true,
  13. "lib": ["dom", "dom.iterable", "esnext"],
  14. /* Strict Type-Checking Options */
  15. // "strict": true,
  16. "strictNullChecks": true,
  17. "strictBindCallApply": true,
  18. "noImplicitAny": false,
  19. "noImplicitOverride": true,
  20. /* Additional Checks */
  21. "noUnusedLocals": false,
  22. "noUnusedParameters": false,
  23. /* Module Resolution Options */
  24. "moduleResolution": "node",
  25. "allowSyntheticDefaultImports": true,
  26. "esModuleInterop": true,
  27. /* Misc */
  28. "preserveConstEnums": true,
  29. "forceConsistentCasingInFileNames": true,
  30. "resolveJsonModule": true,
  31. /* Experimental Options */
  32. "experimentalDecorators": true,
  33. "emitDecoratorMetadata": true
  34. },
  35. "exclude": [
  36. "node_modules",
  37. "dist",
  38. "**/*.test.ts"
  39. ]
  40. }