| 12345678910111213141516171819202122232425262728293031 |
- import { defineConfig } from "tsup"
- export default defineConfig({
- entry: ["src/index.ts"],
- format: ["esm"],
- dts: true,
- clean: true,
- sourcemap: true,
- target: "node20",
- platform: "node",
- banner: {
- js: "#!/usr/bin/env node",
- },
- // Bundle workspace packages that export TypeScript
- noExternal: ["@roo-code/core", "@roo-code/core/cli", "@roo-code/types", "@roo-code/vscode-shim"],
- external: [
- // Keep native modules external
- "@anthropic-ai/sdk",
- "@anthropic-ai/bedrock-sdk",
- "@anthropic-ai/vertex-sdk",
- // Keep @vscode/ripgrep external - we bundle the binary separately
- "@vscode/ripgrep",
- // Optional dev dependency of ink - not needed at runtime
- "react-devtools-core",
- ],
- esbuildOptions(options) {
- // Enable JSX for React/Ink components
- options.jsx = "automatic"
- options.jsxImportSource = "react"
- },
- })
|