mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
Apply the accepted pre-release package, service, type, directory, and role renames as one repository-wide change.
14 lines
580 B
TypeScript
14 lines
580 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
/** Builds each public entry as a self-contained file admitted by the package whitelist. */
|
|
export default defineConfig([
|
|
{
|
|
entry: ['lib/types/index.js'], outDir: 'lib', format: ['esm'], platform: 'node', target: 'es2024',
|
|
fixedExtension: false, outputOptions: { codeSplitting: false }, dts: false, clean: false,
|
|
},
|
|
{
|
|
entry: ['lib/types/invariant.js'], outDir: 'lib', format: ['esm'], platform: 'node', target: 'es2024',
|
|
fixedExtension: false, outputOptions: { codeSplitting: false }, dts: false, clean: false,
|
|
},
|
|
])
|