fix tsup jsx config

This commit is contained in:
Jamie Pine
2025-11-06 03:20:10 -08:00
parent 9d60e8b15a
commit cc8cf5d017

View File

@@ -15,5 +15,8 @@ export default defineConfig({
'class-variance-authority'
],
treeshake: true,
sourcemap: true
sourcemap: true,
esbuildOptions(options) {
options.jsx = 'automatic';
}
});