tsconfig.json 253 B

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