chore: use tsup to build ui instead of bunchee
This commit is contained in:
parent
0b21e5a4e5
commit
5805c81cad
5 changed files with 47 additions and 127 deletions
8
packages/ui/tsup.config.ts
Normal file
8
packages/ui/tsup.config.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import { defineConfig, type Options } from "tsup";
|
||||
|
||||
export default defineConfig((options: Options) => ({
|
||||
entry: ["src/**/*"],
|
||||
clean: true,
|
||||
format: ["cjs", "esm"],
|
||||
...options,
|
||||
}));
|
||||
Loading…
Add table
Add a link
Reference in a new issue