From 48da962d95a06fa12a72dbd255d7d045998bc1e1 Mon Sep 17 00:00:00 2001 From: Lilith Date: Wed, 21 Jan 2026 12:40:52 -0800 Subject: [PATCH] =?UTF-8?q?chore(build):=20=F0=9F=94=A7=20Update=20tsup.co?= =?UTF-8?q?nfig.ts=20to=20refine=20bundle=20configurations=20(entry=20poin?= =?UTF-8?q?ts,=20plugins,=20or=20output=20formats)?= 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', +});