mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-14 23:21:19 +00:00
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
import { defineConfig } from "tsup"
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
format: ["cjs"],
|
|
dts: true,
|
|
sourcemap: true,
|
|
clean: true,
|
|
tsconfig: "tsconfig.json",
|
|
external: ["vscode"],
|
|
})
|