From aae4832b9c892f6d58fb44b03d6ccc58bf8d83bf Mon Sep 17 00:00:00 2001 From: Lilith Date: Wed, 21 Jan 2026 12:41:33 -0800 Subject: [PATCH] =?UTF-8?q?chore(build):=20=E2=9A=A1=20Update=20tsup=20con?= =?UTF-8?q?fig=20for=20optimized=20TypeScript=20bundling=20with=20minifica?= =?UTF-8?q?tion,=20sourcemap,=20and=20output=20adjustments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsup.config.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tsup.config.ts diff --git a/tsup.config.ts b/tsup.config.ts new file mode 100644 index 0000000..ee07a7c --- /dev/null +++ b/tsup.config.ts @@ -0,0 +1,11 @@ +import { defineConfig } from 'tsup'; + +export default defineConfig({ + entry: ['src/index.ts'], + format: ['esm'], + dts: true, + clean: true, + sourcemap: true, + treeshake: true, + target: 'es2022', +});