fix: align web packages with master's two-stage build layout

The web packages were authored against the old single-stage layout where
tsc emitted directly to lib/. Master compiles declarations to lib/types/
via tsc -b, then bundles JS into lib/ via tsdown. Point every web package's
tsc outDir at lib/types, update package.json types/exports/files to the
lib/types declaration + lib/ bundle shape (matching dsh-bash/dsh-tool-bash),
and bundle tool-web's subpath entries from lib/types/*.js rather than src.
This commit is contained in:
Dudu-0223
2026-06-26 19:30:08 +08:00
parent caef252905
commit f843ea7701
11 changed files with 47 additions and 25 deletions

View File

@@ -3,11 +3,12 @@ import { defineConfig } from 'tsdown'
/**
* tool-web exposes one package root plus one entry per tool plugin, so each tool
* can be loaded or replaced independently as a subpath plugin
* (`@deepseek-ai/dsh-tool-web/search`, `/fetch`). The root tsdown config only
* auto-discovers `src/index.ts`, so the subpath entries are declared here.
* (`@deepseek-ai/dsh-tool-web/search`, `/fetch`). The root tsdown builds only
* `lib/types/index.js`, so this override adds the subpath entries. Declarations
* come from `tsc -b` (dts: false), matching every package.
*/
export default defineConfig({
entry: ['src/index.ts', 'src/search.ts', 'src/fetch.ts'],
entry: ['lib/types/index.js', 'lib/types/search.js', 'lib/types/fetch.js'],
outDir: 'lib',
format: ['esm'],
platform: 'node',