Summary
I'm adding the process shim, but I get this error
process.nextTick is not a function
would it be possible to add it?
eg
(globalThis.process as unknown as Record<string, unknown>).nextTick = (
cb: (...cbArgs: unknown[]) => void,
...callArgs: unknown[]
) => {
setTimeout(() => {
cb(...callArgs);
}, 0);
};