Files
moeka-project/services/computer-use-mcp/tsdown.config.ts
T
2026-08-26 19:49:58 +08:00

14 lines
255 B
TypeScript

import { defineConfig } from 'tsdown'
export default defineConfig({
clean: true,
dts: true,
entry: {
'bin/run': 'src/bin/run.ts',
'bin/runner': 'src/bin/runner.ts',
'index': 'src/index.ts',
},
outDir: 'dist',
target: 'node18',
})