Roo-Code/benchmark/packages/runner/tsup.config.ts
2025-03-20 14:22:34 -07:00

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"],
})