mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
12 lines
201 B
TypeScript
12 lines
201 B
TypeScript
import { defineConfig } from "tsup"
|
|
|
|
export default defineConfig({
|
|
clean: true,
|
|
dts: true,
|
|
entry: ["src/index.ts"],
|
|
format: ["esm"],
|
|
sourcemap: true,
|
|
target: "esnext",
|
|
outDir: "dist",
|
|
})
|