Skip to content

Commit

Permalink
chore: don't clean output dir during development
Browse files Browse the repository at this point in the history
  • Loading branch information
arnoson committed Dec 20, 2023
1 parent 52e3785 commit 56e9887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export default defineConfig(options => ({
target: 'es2022',
minify: options.watch ? false : 'terser',
dts: !options.watch,
clean: true,
clean: !options.watch,
outExtension: () => ({ js: '.js' }),
}))

0 comments on commit 56e9887

Please sign in to comment.