ecommerce-template/packages/ui/tsup.config.ts

8 lines
184 B
TypeScript

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