The 'global' not being defined is referring to a Node global: https://github.com/sindresorhus/globals/blob/main/data/nodeBuiltin.mjs#L30
So adding ...globals.node should do the trick:
globals: {
...globals.browser,
...globals.jest,
...globals.node,
},