figma-local-context-mcp/tsup.config.ts
2026-05-20 19:14:51 +08:00

11 lines
196 B
TypeScript

import { defineConfig } from "tsup"
export default defineConfig({
entry: ["src/bin.ts", "src/index.ts"],
format: ["esm"],
target: "node20",
dts: true,
sourcemap: true,
clean: true
})