From 3eeea4203cb857e9374773e4359a6180fa844c2f Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Wed, 22 Apr 2026 15:49:18 +0300 Subject: [PATCH] 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) --- packages/mcp/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mcp/tsconfig.json b/packages/mcp/tsconfig.json index 56db0d19f..d349b91c2 100644 --- a/packages/mcp/tsconfig.json +++ b/packages/mcp/tsconfig.json @@ -9,5 +9,5 @@ "outDir": "dist", "rootDir": "src" }, - "include": ["src"] + "include": ["src/index.ts", "src/server.ts", "src/stdio.ts"] }