mirror of
https://github.com/KwiTsukasa/figma-local-context-mcp.git
synced 2026-05-27 16:45:46 +08:00
11 lines
196 B
TypeScript
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
|
|
})
|