tsconfig.json 241 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "Bundler",
  6. "strict": true,
  7. "skipLibCheck": true,
  8. "lib": ["ESNext"],
  9. "jsx": "react-jsx",
  10. "jsxImportSource": "hono/jsx"
  11. }
  12. }