From 0f23e5a563ab9e1539cb69f17fadabd228538af2 Mon Sep 17 00:00:00 2001 From: Martin Muzikar Date: Thu, 7 Mar 2024 08:47:20 +0100 Subject: [PATCH] build: minify output --- tsup.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tsup.config.ts b/tsup.config.ts index 43d1a67..42ba473 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -4,4 +4,5 @@ export default defineConfig({ dts: true, sourcemap: false, entry: ['src/index.ts'], + minify: true, })