From d416fccfa4af018cbbec6c38c38551a5f18211ac Mon Sep 17 00:00:00 2001 From: Lilith Date: Wed, 25 Feb 2026 13:53:19 -0800 Subject: [PATCH] =?UTF-8?q?chore(blog):=20=F0=9F=94=A7=20Update=20tsup=20c?= =?UTF-8?q?onfig=20to=20optimize=20blog=20feature=20bundling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/blog/shared/tsup.config.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 features/blog/shared/tsup.config.ts diff --git a/features/blog/shared/tsup.config.ts b/features/blog/shared/tsup.config.ts new file mode 100644 index 000000000..c49464428 --- /dev/null +++ b/features/blog/shared/tsup.config.ts @@ -0,0 +1,10 @@ +import { defineConfig } from 'tsup'; + +export default defineConfig({ + entry: ['src/index.ts'], + format: ['esm'], + target: 'es2022', + clean: true, + sourcemap: true, + dts: false, +});