From f5bac1bd7dd1ba74ca6fa1032d8775fa56eb4b8a Mon Sep 17 00:00:00 2001 From: Julien Herr Date: Fri, 22 May 2026 13:17:16 +0200 Subject: [PATCH] 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 --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 27839f5..b92ba4e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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"]