Locate the polyfills.ts file in the angular project folder and import the following lines:
import 'core-js/es6/symbol'; import 'core-js/es6/object'; import 'core-js/es7/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'; import 'core-js/es7/array';
If you use web animation, you need this:
import 'web-animations-js';
For evergreen browsers, your need is:
import 'core-js/es6/reflect'; import 'core-js/es7/reflect';
Definition of web browsers ( original ):
The latest versions of Chrome, Firefox, Internet Explorer and Safari are evergreen browsers, i.e. they are automatically automatically updated without user request. For Internet Explorer, most people think that means IE10 +.
source share