mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
20 lines
584 B
TypeScript
20 lines
584 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
/**
|
|
* stdio-agent ships TWO entries: the plugin (`index`) and the CLI `bin`
|
|
* (`bin`), the latter referenced by package.json `bin`/`exports["./bin"]`.
|
|
* The root tsdown builds only `lib/types/index.js`, so this override adds
|
|
* `lib/types/bin.js`. Declarations come from `tsc -b` (dts: false),
|
|
* matching every package.
|
|
*/
|
|
export default defineConfig({
|
|
entry: ['lib/types/index.js', 'lib/types/bin.js'],
|
|
outDir: 'lib',
|
|
format: ['esm'],
|
|
platform: 'node',
|
|
target: 'es2024',
|
|
fixedExtension: false,
|
|
dts: false,
|
|
clean: false,
|
|
})
|