Skip to content

Commit e5382f0

Browse files
committed
Update dev dependencies
1 parent 1974944 commit e5382f0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
"expect-type": "^1.1.0",
4545
"npm-run-all2": "^7.0.1",
4646
"tsd": "^0.31.2",
47-
"typescript": "~5.7.2",
48-
"xo": "^0.59.3"
47+
"typescript": "~5.8.2",
48+
"xo": "^0.60.0"
4949
},
5050
"xo": {
5151
"rules": {

test-d/set-parameter-type.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ declare const testThis: SetParameterType<typeof functionWithThis, {0: string}>;
4747
expectType<(this: Global, a: string) => null>(testThis);
4848

4949
// @ts-ignore global requires @types/node
50-
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
50+
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, unicorn/prefer-global-this
5151
testThis.call(global, '1');

0 commit comments

Comments
 (0)