From 6c560e0f846b5b89ed9f60591f5e94e91d9ac311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aura=20Rom=C3=A1n?= Date: Thu, 16 May 2024 20:47:47 +0200 Subject: [PATCH] chore: cleanup --- tsup.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsup.config.ts b/tsup.config.ts index 1e5f6fd..ff51061 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -15,5 +15,5 @@ const baseOptions: Options = { export default [ defineConfig({ ...baseOptions, outDir: 'dist/cjs', format: 'cjs' }), - defineConfig({ ...baseOptions, outDir: 'dist/esm', format: 'esm', outExtension: () => ({ js: '.mjs', dts: '.d.mts' }) }) + defineConfig({ ...baseOptions, outDir: 'dist/esm', format: 'esm', outExtension: () => ({ js: '.mjs' }) }) ];