websites/packages/ui/tsup.config.ts
2023-11-13 11:24:58 +01:00

14 lines
270 B
TypeScript

import { defineConfig, Options } from "tsup";
export default defineConfig((options: Options) => ({
treeshake: true,
splitting: true,
entry: ["src/**/*.tsx"],
format: ["esm"],
dts: true,
minify: true,
clean: true,
external: ["react"],
...options,
}));