From 1fd0f872303bea894021effa84eb5bb10b5ca827 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Feb 2026 20:31:00 +0000 Subject: [PATCH 1/2] Initial plan From eec93355d5f43177f2edc910bb5441149b2dc0f8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Feb 2026 20:34:12 +0000 Subject: [PATCH 2/2] Update tsconfig.json for Next.js 16 compatibility Co-authored-by: dcotelo <50673035+dcotelo@users.noreply.github.com> --- frontend/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 4e63d5f..cd0e0a3 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -12,7 +12,7 @@ "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "preserve", + "jsx": "react-jsx", "incremental": true, "plugins": [ { @@ -23,7 +23,7 @@ "@/*": ["./*"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "jest.setup.js"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "jest.setup.js", ".next/dev/types/**/*.ts"], "exclude": ["node_modules"], "types": ["jest", "@testing-library/jest-dom"] }