From 08979f08a73c54498631a6af5274f2143e08fdee Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Mar 2026 18:43:11 +0000 Subject: [PATCH] fix: exclude src/__tests__ from tsc compilation to fix NodeNext module resolution errors Co-authored-by: jackton1 <17484350+jackton1@users.noreply.github.com> --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 43e301b..2bc8b75 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,5 +10,5 @@ "isolatedModules": true, /* Ensure each file can be safely transpiled without relying on other imports. */ "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ }, - "exclude": ["node_modules", "jest/setEnvVars.cjs"] + "exclude": ["node_modules", "jest/setEnvVars.cjs", "src/__tests__"] }