I know that this issue has been discussed a billion times, but it seems that none of the solutions I can find here are helping in my case.
This is what my polyfills.browser.ts looks like right now:
import 'ie-shim';
import 'core-js/es7/reflect';
import 'reflect-metadata';
import 'zone.js/dist/zone';
As stated before, I tried different approaches for solving this.
I tried adding all imports that are uncommented by default:
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/set';
I tried using
import "core-js/client/shim";
and also
import 'mdn-polyfills/Object.assign';
and
import 'core-js';
All of these were added to the top of polyfills.browser.ts
None seems to help and I keep getting Object doesn't support property or method 'assign' in IE11.