/ tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "ESNext",
 4      "module": "ESNext",
 5      "moduleResolution": "Bundler",
 6      "strict": true,
 7      "skipLibCheck": true,
 8      "lib": [
 9        "ESNext"
10      ],
11      "types": [
12        "@cloudflare/workers-types"
13      ],
14      "jsx": "react-jsx",
15      "jsxImportSource": "hono/jsx"
16    },
17  }