From 60eb923f640ac35a9c8119a957f9059186d8bd0b Mon Sep 17 00:00:00 2001 From: Davidson Gomes Date: Thu, 15 Aug 2024 14:00:24 -0300 Subject: [PATCH] chore: Update tsup configuration Modified: tsup.config.ts This commit updates the tsup configuration file. The changes made aim to improve the project's build process and optimize the bundle size. No new functionality or bug fixes are introduced in this commit. --- tsup.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsup.config.ts b/tsup.config.ts index 8ea3c3a7..f1399a13 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -8,4 +8,7 @@ export default defineConfig({ clean: true, minify: true, format: ['cjs', 'esm'], + loader: { + '.json': 'file', + }, });