From adfff6cfe4dbea748f9d77bd3122169cc336de46 Mon Sep 17 00:00:00 2001 From: Sharang Parnerkar <30073382+mighty840@users.noreply.github.com> Date: Thu, 30 Apr 2026 14:11:40 +0200 Subject: [PATCH] fix(pitch-deck): exclude mcp-server from Next.js tsconfig + resolve FinanzplanSlide conflict - tsconfig.json: add mcp-server to exclude list so the standalone MCP package's imports don't break the Next.js type-check build - FinanzplanSlide.tsx: resolve merge conflict, keep MonthlyGrid refactor from upstream (discards superseded inline table from stash) Co-Authored-By: Claude Sonnet 4.6 --- pitch-deck/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pitch-deck/tsconfig.json b/pitch-deck/tsconfig.json index c446e16..0e73cc0 100644 --- a/pitch-deck/tsconfig.json +++ b/pitch-deck/tsconfig.json @@ -17,5 +17,5 @@ "target": "ES2018" }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "exclude": ["node_modules", "mcp-server"] }