Skip to content

Commit

Permalink
test(v8/e2e): Fix node-express test transitive dependency (#15004)
Browse files Browse the repository at this point in the history
It seems that `@types/qs` v 6.9.18 which was just released breaks this
somehow...

Backport of #15001
  • Loading branch information
mydea authored Jan 14, 2025
1 parent 798a932 commit 286f6b0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,19 @@
"@sentry/node": "latest || *",
"@trpc/server": "10.45.2",
"@trpc/client": "10.45.2",
"@types/express": "4.17.17",
"@types/node": "18.15.1",
"express": "4.20.0",
"@types/express": "^4.17.21",
"@types/node": "^18.19.1",
"express": "^4.21.2",
"typescript": "4.9.5",
"zod": "~3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@sentry-internal/test-utils": "link:../../../test-utils"
},
"resolutions": {
"@types/qs": "6.9.17"
},
"volta": {
"extends": "../../package.json"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"types": ["node"],
"esModuleInterop": true,
"lib": ["es2018"],
"lib": ["es2020"],
"strict": true,
"outDir": "dist"
},
Expand Down

0 comments on commit 286f6b0

Please # to comment.