mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-23 04:35:46 +00:00
13 lines
217 B
TypeScript
13 lines
217 B
TypeScript
import { defineConfig } from "tsup"
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
dts: true,
|
|
entry: ["src/index.ts"],
|
|
format: ["esm"],
|
|
sourcemap: true,
|
|
minify: true,
|
|
target: "esnext",
|
|
outDir: "dist",
|
|
})
|