mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-09 06:55:07 +00:00
* feat: implement shadcn/registry * feat: add schema field * fix: import * chore: add changeset * chore: remove console * fix: tests * fix: diff command * feat: move to schema/registy-item.json * fix * ci: switch to node 20 * ci: build packages
14 lines
261 B
TypeScript
14 lines
261 B
TypeScript
import { defineConfig } from "tsup"
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
dts: true,
|
|
entry: ["src/index.ts", "src/registry/index.ts"],
|
|
format: ["esm"],
|
|
sourcemap: true,
|
|
minify: true,
|
|
target: "esnext",
|
|
outDir: "dist",
|
|
treeshake: true,
|
|
})
|