From a542eee29cf2d061205961e853f41f877ca4c503 Mon Sep 17 00:00:00 2001 From: Francesco Date: Thu, 19 Feb 2026 02:52:28 +0000 Subject: [PATCH] chore: Update tsconfig.json for Next.js 15 compatibility - Remove .next/types/**/*.ts from include (no longer needed in Next.js 15) --- frontend/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index d8b9323..da687f1 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -22,6 +22,6 @@ "@/*": ["./*"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], "exclude": ["node_modules"] }