From cc8cf5d0175cdcd4a3354f29237cfec07c7af3f8 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Thu, 6 Nov 2025 03:20:10 -0800 Subject: [PATCH] fix tsup jsx config --- packages/ui/tsup.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/ui/tsup.config.ts b/packages/ui/tsup.config.ts index 52ec2fe33..1d850fa22 100644 --- a/packages/ui/tsup.config.ts +++ b/packages/ui/tsup.config.ts @@ -15,5 +15,8 @@ export default defineConfig({ 'class-variance-authority' ], treeshake: true, - sourcemap: true + sourcemap: true, + esbuildOptions(options) { + options.jsx = 'automatic'; + } });