mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
19 lines
558 B
TypeScript
19 lines
558 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
/**
|
|
* The dsh CLI ships one entry: the `bin` referenced by package.json `bin`.
|
|
* The root tsdown builds only `lib/types/index.js`, so this override points at
|
|
* `lib/types/bin.js` instead; the statically imported surface modules bundle
|
|
* into it. Declarations come from `tsc -b` (dts: false), matching every package.
|
|
*/
|
|
export default defineConfig({
|
|
entry: ['lib/types/bin.js'],
|
|
outDir: 'lib',
|
|
format: ['esm'],
|
|
platform: 'node',
|
|
target: 'es2024',
|
|
fixedExtension: false,
|
|
dts: false,
|
|
clean: false,
|
|
})
|