From e8019c9bc23a2f9fd5f907640e7a484461d3f21e Mon Sep 17 00:00:00 2001 From: Konstantin Naumenko <98680950+WhoStoleMySleep@users.noreply.github.com> Date: Tue, 3 Mar 2026 23:20:28 +0700 Subject: [PATCH] perf: optimize build configuration --- tsup.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsup.config.ts b/tsup.config.ts index bd09678..6b01081 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -5,9 +5,9 @@ export default defineConfig({ format: ['esm', 'cjs'], dts: true, clean: true, - sourcemap: true, + sourcemap: false, splitting: false, - minify: false, + minify: true, target: 'es2020', outDir: 'dist', });