I upgraded to Angular 8 using ng update. It ran its migration scripts which (among other things) removed the es6/es7 imports in polyfills.ts. From
ng update
polyfills.ts
I have solved my polyfill.ts issues with IE 11 by doing the following:
polyfill.ts
IE 11
npm install --save web-animations-js
import 'web-animations-js'
target
tsconfig.json
IE 11 requires 'es5'.