Skip to content

Commit 26c37f5

Browse files
committed
fix: return type options for tsup
1 parent 5b8919c commit 26c37f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsup.config.base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { Format, Options } from 'tsup'
33
export const defaultConfig = (
44
config: Omit<Options, 'external' | 'format' | 'minify' | 'dts'>,
55
options: Options
6-
) => ({
6+
): Options => ({
77
...config,
88
clean: !options.watch,
99
target: 'esnext',

0 commit comments

Comments
 (0)