tsconfig.json 298 B

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