From 2bdcada7c872b2eabdfd07e72639e9fa5e9cb723 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Sat, 28 Feb 2026 01:47:20 +0000 Subject: [PATCH] Remove sourcemaps from build output Co-authored-by: Ona --- tsup.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsup.config.ts b/tsup.config.ts index d0ccf1d..683076f 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -4,7 +4,7 @@ export default defineConfig({ entry: ["src/index.ts", "src/jsx-runtime.ts", "src/jsx-dev-runtime.ts"], format: ["cjs", "esm"], dts: true, - sourcemap: true, + sourcemap: false, clean: true, splitting: false, jsx: "transform",