Skip to content

Commit 063fce1

Browse files
committed
fix(build): adds exclusion for .spec file in tsup
1 parent 75b289c commit 063fce1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig } from 'tsup';
22

33
export default defineConfig({
4-
entry: ['lib', '!lib/**/*.test.ts'],
4+
entry: ['lib', '!lib/**/*.test.ts', '!lib/**/*.spec.ts'],
55
format: ['cjs', 'esm'],
66
dts: true,
77
clean: true,

0 commit comments

Comments
 (0)