mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
19 lines
325 B
TypeScript
19 lines
325 B
TypeScript
import { defineConfig } from "tsup"
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
dts: true,
|
|
entry: [
|
|
"src/index.ts",
|
|
"src/registry/index.ts",
|
|
"src/schema/index.ts",
|
|
"src/mcp/index.ts",
|
|
],
|
|
format: ["esm"],
|
|
sourcemap: true,
|
|
minify: true,
|
|
target: "esnext",
|
|
outDir: "dist",
|
|
treeshake: true,
|
|
})
|