Skip to content

Commit

Permalink
fix(tsup): remove entry of experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli committed Oct 29, 2023
1 parent 8aa9e44 commit 1b69c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configs/tsup/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { Options } from 'tsup'
export const options: Options = {
banner: { js: '"use client"' },
format: ['cjs', 'esm'],
entry: ['{src,src/experimental}/*.{ts,tsx}', '!**/*.{spec,test,test-d}.*'],
entry: ['src/*.{ts,tsx}', '!**/*.{spec,test,test-d}.*'],
sourcemap: true,
dts: true,
splitting: false,
Expand Down

0 comments on commit 1b69c21

Please sign in to comment.