You have created your angular app and now you have some error about method fill, for example: “Object doesn’t support property or method ‘fill'”.
Line that fail:
var HEADER_FILLER = new Array(HEADER_OFFSET).fill(null); (Angular core).
Don’t worry the solution is easy. You must open your file on: src/polyfill.ts
At line 21 of the file you see:
/** IE9, IE10 and IE11 requires all of the following polyfills. **/and many “import ‘core-js/es6/BLABLA’” commented.
You must to uncomment all:
/** IE9, IE10 and IE11 requires all of the following polyfills. **/ 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/weak-map'; import 'core-js/es6/set';Build and fun!
Thanks, very good