diff options
Diffstat (limited to 'std/node/global.ts')
-rw-r--r-- | std/node/global.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/node/global.ts b/std/node/global.ts index 7d147cc4b..0cb6b8b06 100644 --- a/std/node/global.ts +++ b/std/node/global.ts @@ -5,5 +5,5 @@ Object.defineProperty(globalThis, Symbol.toStringTag, { configurable: true, }); -// @ts-expect-error -globalThis["global"] = globalThis; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +(globalThis as any)["global"] = globalThis; |