From 3cc966c70ccb1556b937f8e20749d0b24e2d1a74 Mon Sep 17 00:00:00 2001 From: Scrum4Me Agent <30029041+madhura68@users.noreply.github.com> Date: Wed, 13 May 2026 17:28:55 +0200 Subject: [PATCH] fix(tsconfig): exclude ops-agent from Next.js TypeScript check ops-agent has its own separate tsconfig and dependencies (fastify, js-yaml) that are not installed in the root node_modules. Co-Authored-By: Claude Sonnet 4.6 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 3a13f90..e0a56f6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -30,5 +30,5 @@ ".next/dev/types/**/*.ts", "**/*.mts" ], - "exclude": ["node_modules"] + "exclude": ["node_modules", "ops-agent"] }