Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
back to 18 react
  • Loading branch information
joshuafernandes committed Jul 17, 2025
commit 2112df8af99e957cf1723e0239976acf7e38c481
52 changes: 24 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
"node-polyfill-webpack-plugin": "^2.0.1",
"prettier": "^3.6.2",
"prism-react-renderer": "^2.4.1",
"react": "^19.1.0",
"react": "^18.0.0",
"react-alert": "^7.0.3",
"react-dom": "^19.1.0",
"react-dom": "^18.1.0",
"react-dropdown-select": "^4.12.2",
"react-modal": "^3.16.3",
"react-player": "^3.3.1",
Expand All @@ -82,7 +82,6 @@
"@tsconfig/docusaurus": "^2.0.3",
"@types/react": "^19.1.8",
"@types/react-alert": "^7.0.6",
"@types/react-dom": "^19.1.6",
"@types/react-modal": "^3.16.3",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^8.0.0",
Expand All @@ -94,8 +93,8 @@
},
"overrides": {
"react-alert": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
},
"browserslist": {
Expand Down
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@
// This file is not used in compilation. It is here just for a nice editor experience.
"extends": "@docusaurus/tsconfig",
"compilerOptions": {
"jsx": "react-jsx",
"lib":["DOM", "ES2022"],
"types": ["react","docusaurus-plugin-sass"],
"rootDir": "./src",
"baseUrl": ".",
"jsx": "react-jsx",
"paths": {
"@site/*": ["./*"],
"@theme/*": ["./node_modules/@docusaurus/theme-classic"],
"launchdarkly": [
"./node_modules/launchdarkly-js-client-sdk/dist/ldclient.es.js"
],
"sentry-plugin": ["./node_modules/@sentry/browser/build/npm/esm/index.js"]
},
"types": ["react","react-dom","docusaurus-plugin-sass"]
}
},
"include": ["src/globals.d.ts", "./src/**/*"],
"exclude": ["node_modules"]
Expand Down
Loading