tsconfig.json 614 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "CommonJS",
  5. "declaration": true,
  6. "allowSyntheticDefaultImports": true,
  7. "moduleResolution": "Node",
  8. "sourceMap": true,
  9. "outDir": "dist",
  10. "strict": true,
  11. "alwaysStrict": true,
  12. "strictNullChecks": true,
  13. "strictPropertyInitialization": true,
  14. "noImplicitAny": true,
  15. "noImplicitThis": true,
  16. "noImplicitReturns": true,
  17. "noUnusedLocals": true,
  18. "noFallthroughCasesInSwitch": true,
  19. "esModuleInterop": true
  20. },
  21. "exclude": ["./node_modules", "./dist"],
  22. "include": ["./src/*.ts", "./src/**/*.ts"]
  23. }