From 44bb023b804b0ab360214360a3947935fb41c86c Mon Sep 17 00:00:00 2001 From: AAGaming Date: Wed, 15 Oct 2025 00:31:12 -0400 Subject: React 19 support (#818) --- frontend/tsconfig.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'frontend/tsconfig.json') diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index d12d14da..02d3d4ad 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -2,9 +2,7 @@ "compilerOptions": { "module": "ESNext", "target": "ES2021", - "jsx": "react", - "jsxFactory": "window.SP_REACT.createElement", - "jsxFragmentFactory": "window.SP_REACT.Fragment", + "jsx": "react-jsx", "declaration": false, "moduleResolution": "node", "noUnusedLocals": true, @@ -15,7 +13,8 @@ "noImplicitAny": true, "strict": true, "allowSyntheticDefaultImports": true, - "resolveJsonModule": true + "resolveJsonModule": true, + "skipLibCheck": true }, "include": ["src", "index.d.ts"], "exclude": ["node_modules"] -- cgit v1.2.3