mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
/** Builds the plugin and executable entries from declarations emitted by `tsc -b`. */
|
|
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,
|
|
})
|