| { | |
| "compilerOptions": { | |
| "moduleResolution": "Bundler", | |
| "baseUrl": ".", | |
| "paths": { | |
| "@engine/*": ["src/*"] | |
| }, | |
| "strict": true, | |
| "types": ["@cloudflare/workers-types", "bun"], | |
| "jsx": "react-jsx", | |
| "jsxImportSource": "hono/jsx", | |
| "lib": ["ESNext"], | |
| "target": "ESNext", | |
| "module": "ESNext", | |
| "moduleDetection": "force", | |
| "allowJs": true, | |
| "skipLibCheck": true, | |
| "noFallthroughCasesInSwitch": true, | |
| "composite": true, | |
| "declaration": true, | |
| "declarationMap": true | |
| }, | |
| "include": ["src"], | |
| "exclude": ["dist", "node_modules"] | |
| } | |