tsconfig.json 576 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "moduleResolution": "node",
  6. "sourceMap": true,
  7. "inlineSources": true,
  8. "noImplicitAny": true,
  9. "rootDir": "./src",
  10. "outDir": "./dist",
  11. "allowSyntheticDefaultImports": true,
  12. "removeComments": true,
  13. "noImplicitReturns": true,
  14. "noFallthroughCasesInSwitch": true,
  15. "pretty": true,
  16. "declaration": true,
  17. "skipLibCheck": true,
  18. "lib": ["es6", "esnext.asynciterable"],
  19. "types": [
  20. "node"
  21. ]
  22. },
  23. "exclude": [
  24. "node_modules",
  25. "dist"
  26. ]
  27. }