From 31392fc5b25d3aef68d3d662065669fc0b7e7de0 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Wed, 27 Dec 2023 20:08:54 +0100 Subject: [PATCH] Clean up tsup config --- tsup.config.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tsup.config.ts b/tsup.config.ts index 2147797a..71d8a014 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -5,10 +5,7 @@ export default defineConfig({ dts: true, splitting: true, clean: true, - target: "es2015", - format: ["cjs", "esm"], - - // Perhaps enable later? - minify: true, + // target: /* what tsconfig specifies */, + format: ["esm", "cjs"], sourcemap: true, });