fix(mcp): explicitly list entry points in tsconfig

tsgo with `include: ["src"]` sometimes skips standalone entry points
like stdio.ts that aren't imported by other files. This caused the
published npm package to be missing dist/stdio.js, breaking the
`openpencil-mcp` stdio binary.

Fixes #224 (npm publish issue)
This commit is contained in:
Danila Poyarkov 2026-04-22 15:49:18 +03:00
parent 10921d1b58
commit 3eeea4203c

View file

@ -9,5 +9,5 @@
"outDir": "dist",
"rootDir": "src"
},
"include": ["src"]
"include": ["src/index.ts", "src/server.ts", "src/stdio.ts"]
}