Skip to content

Commit

Permalink
add tsup config
Browse files Browse the repository at this point in the history
  • Loading branch information
leezer94 committed Aug 9, 2023
1 parent 7abe328 commit e9235a0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions packages/ui/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { defineConfig } from 'tsup';

export default defineConfig({
clean: true,
dts: true,
entry: ['src/index.ts'],
format: ['esm'],
sourcemap: true,
target: 'esnext',
outDir: 'dist',
});

0 comments on commit e9235a0

Please sign in to comment.