Upgrading to angular-6.x gives “Uncaught ReferenceError: global is not defined”

Adding this line to polyfills.ts should resolve node global error

(window as any).global = window;

The solution was mentioned in this angular-cli issue thred

Leave a Comment