tsconfig.json 410 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "declaration": true,
  7. "declarationDir": "./dist",
  8. "emitDeclarationOnly": true,
  9. "strict": true,
  10. "skipLibCheck": true,
  11. "types": ["bun-types"],
  12. "outDir": "./dist",
  13. "rootDir": "./src"
  14. },
  15. "include": ["src/**/*.ts"],
  16. "exclude": ["node_modules", "dist", "**/*.test.ts"]
  17. }