From 451ff783af6a2f3f64bfba748fc5ad167839c171 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 8 Mar 2026 20:19:46 -0700 Subject: [PATCH] =?UTF-8?q?chore(config):=20=F0=9F=94=A7=20Update=20tsup?= =?UTF-8?q?=20build=20config=20to=20enable=20minification=20and=20sourcema?= =?UTF-8?q?ps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- tsup.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tsup.config.ts b/tsup.config.ts index d2d215c..ffeed64 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -7,4 +7,5 @@ export default createLibraryConfig({ 'phonetic/index': 'src/phonetic/index.ts', 'data-structures/index': 'src/data-structures/index.ts', }, + format: ['esm', 'cjs'], });