build: add hono/jsx support to tsconfig

Add jsx and jsxImportSource compiler options to enable hono/jsx server-side
rendering in .tsx files without per-file JSX pragmas.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Julien Herr
2026-05-22 13:17:16 +02:00
parent d82344ac67
commit f5bac1bd7d
+3 -1
View File
@@ -12,7 +12,9 @@
"isolatedModules": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
"skipLibCheck": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]