We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cb75cb commit 2c10ebdCopy full SHA for 2c10ebd
packages/multiple-select-vanilla/tsup.config.ts
@@ -9,6 +9,7 @@ export default defineConfig(options => [
9
sourcemap: true,
10
// clean: true,
11
dts: !options.watch,
12
+ minify: !options.watch,
13
outExtension: ({ format }) => ({ js: format === 'cjs' ? '.cjs' : '.mjs' }),
14
},
15
// common js for node and other backend runtimes
@@ -19,6 +20,7 @@ export default defineConfig(options => [
19
20
21
22
23
+ minify: true,
24
outExtension: ({ format }) => ({
25
js: format === 'cjs' ? '.cjs' : '.mjs',
26
}),
0 commit comments