tsconfig.base.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "typeRoots": [
  26. "./node_modules/@types"
  27. ],
  28. "allowSyntheticDefaultImports": true,
  29. "esModuleInterop": true,
  30. /* Misc */
  31. "preserveConstEnums": true,
  32. "forceConsistentCasingInFileNames": true,
  33. "resolveJsonModule": true,
  34. /* Experimental Options */
  35. "experimentalDecorators": true,
  36. "emitDecoratorMetadata": true,
  37. },
  38. "exclude": [
  39. "node_modules",
  40. "dist",
  41. "**/*.test.ts"
  42. ],
  43. "ts-node": {
  44. "transpileOnly": true,
  45. "swc": true
  46. }
  47. }