chore: use tsup to build ui instead of bunchee

This commit is contained in:
afiqzudinhadi 2025-06-20 17:40:59 +08:00
parent 0b21e5a4e5
commit 5805c81cad
5 changed files with 47 additions and 127 deletions

View file

@ -0,0 +1,8 @@
import { defineConfig, type Options } from "tsup";
export default defineConfig((options: Options) => ({
entry: ["src/**/*"],
clean: true,
format: ["cjs", "esm"],
...options,
}));