tsconfig.json 283 B

12345678910111213141516
  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. ],
  13. "jsx": "react-jsx",
  14. "jsxImportSource": "hono/jsx"
  15. },
  16. }