Skip to content

Commit 72ee7e3

Browse files
committed
fix: patch NodeJS.Global for Jest/tsc monorepo CI compatibility (no-empty-interface lint suppressed)
1 parent 8256b5e commit 72ee7e3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Patch for legacy Jest types expecting NodeJS.Global in old monorepo CI environments
2+
3+
declare namespace NodeJS {
4+
// This empty interface restores "Global" expected by old Jest+@types/node combos
5+
interface Global {}
6+
}
7+

0 commit comments

Comments
 (0)