| 1 | { |
| 2 | "extends": "../tsconfig.json", |
| 3 | "compilerOptions": { |
| 4 | // Environment settings |
| 5 | "lib": ["ESNext"], |
| 6 | "target": "ESNext", |
| 7 | "module": "ESNext", |
| 8 | "jsx": "react-jsx", |
| 9 | "jsxImportSource": "hono/jsx", |
| 10 | |
| 11 | // Types |
| 12 | "types": ["bun-types"], |
| 13 | |
| 14 | // Output settings |
| 15 | "declaration": true, |
| 16 | "outDir": "dist", |
| 17 | "noEmit": false, |
| 18 | "emitDecoratorMetadata": true, |
| 19 | |
| 20 | // Module resolution |
| 21 | "moduleResolution": "bundler", |
| 22 | "allowImportingTsExtensions": false |
| 23 | }, |
| 24 | "include": ["src/**/*"], |
| 25 | "exclude": ["node_modules", "dist"] |
| 26 | } |