From 1fcd12fc14c6091ef93a9d118671981a35a14e28 Mon Sep 17 00:00:00 2001 From: Matt Batchelder Date: Wed, 29 Jul 2026 06:18:05 -0400 Subject: [PATCH] fix: exclude __tests__ from typecheck to avoid jest/next types conflict --- apps/web/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 8515f15..a8a90a9 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -15,5 +15,5 @@ } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "exclude": ["node_modules", "__tests__"] }