diff options
| author | AAGaming <aagaming@riseup.net> | 2025-10-15 00:31:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-15 00:31:12 -0400 |
| commit | 44bb023b804b0ab360214360a3947935fb41c86c (patch) | |
| tree | f1313a32a16297fcaadecc3ba3eb2e21dec4ddb7 /frontend/tsconfig.json | |
| parent | 86b5567d4eac84399245c9a71270d6142ee54ded (diff) | |
| download | decky-loader-3.2.0.tar.gz decky-loader-3.2.0.zip | |
React 19 support (#818)v3.2.0-pre1v3.2.0
Diffstat (limited to 'frontend/tsconfig.json')
| -rw-r--r-- | frontend/tsconfig.json | 7 |
1 files changed, 3 insertions, 4 deletions
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"] |
