From 68c4393fa1e8dce0979089ce4ff9f1fdd1237036 Mon Sep 17 00:00:00 2001 From: marthevienne <123016211+marthevienne@users.noreply.github.com> Date: Wed, 12 Mar 2025 12:24:00 +0100 Subject: [PATCH 1/3] fix: add path react tsconfing.json --- frontend/tsconfig.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index f8972062..62a8a353 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -13,11 +13,12 @@ // "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "preserve", - "jsxImportSource": "react", + "jsx": "react", "baseUrl": ".", "paths": { - "@/*": ["./*"] + "@/*": ["./*"], + "react": [ "./node_modules/@types/react" ] + }, "plugins": [ { From 74bee3df649e3d7ff1f4acd50ab85eabd0a09c99 Mon Sep 17 00:00:00 2001 From: marthevienne <123016211+marthevienne@users.noreply.github.com> Date: Fri, 12 Sep 2025 09:02:23 +0200 Subject: [PATCH 2/3] fix: build error 'AnimatePresence' --- frontend/tsconfig.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 62a8a353..f8972062 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -13,12 +13,11 @@ // "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "react", + "jsx": "preserve", + "jsxImportSource": "react", "baseUrl": ".", "paths": { - "@/*": ["./*"], - "react": [ "./node_modules/@types/react" ] - + "@/*": ["./*"] }, "plugins": [ { From 1126f6e58d9e35b66d00ba2a89842be4c0714b96 Mon Sep 17 00:00:00 2001 From: marthevienne <123016211+marthevienne@users.noreply.github.com> Date: Wed, 12 Mar 2025 12:24:00 +0100 Subject: [PATCH 3/3] fix: add path react tsconfing.json --- frontend/tsconfig.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index f8972062..62a8a353 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -13,11 +13,12 @@ // "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "preserve", - "jsxImportSource": "react", + "jsx": "react", "baseUrl": ".", "paths": { - "@/*": ["./*"] + "@/*": ["./*"], + "react": [ "./node_modules/@types/react" ] + }, "plugins": [ {