From 3983fb7c7d7eb73686452dbb5d96b538fb7c6ab1 Mon Sep 17 00:00:00 2001 From: Lilith Date: Wed, 21 Jan 2026 15:26:37 -0800 Subject: [PATCH] =?UTF-8?q?build:=20=E2=9A=A1=20Optimize=20TypeScript=20bu?= =?UTF-8?q?ndling=20config=20for=20performance=20improvements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsup.config.ts | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/tsup.config.ts b/tsup.config.ts index ee07a7c..3bf41e0 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -1,11 +1,3 @@ -import { defineConfig } from 'tsup'; +import { createLibraryConfig } from '@lilith/configs/tsup/library'; -export default defineConfig({ - entry: ['src/index.ts'], - format: ['esm'], - dts: true, - clean: true, - sourcemap: true, - treeshake: true, - target: 'es2022', -}); +export default createLibraryConfig();