Skip to content

Commit

Permalink
Bump @types/react-dom from 18.3.5 to 19.0.2 in /e2e/browser/solid-cli…
Browse files Browse the repository at this point in the history
…ent-authn-browser/test-app (#3808)
  • Loading branch information
dependabot[bot] authored Jan 7, 2025
1 parent a7af711 commit c3a560e
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^18.3.1",
"@types/react-dom": "^19.0.2",
"esbuild": "^0.24.2",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.3"
Expand Down
24 changes: 20 additions & 4 deletions e2e/browser/solid-client-authn-browser/test-app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -13,8 +17,20 @@
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
"include": [
"**/*.ts",
"**/*.tsx",
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}
29 changes: 17 additions & 12 deletions package-lock.json

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

0 comments on commit c3a560e

Please sign in to comment.