0

I'm using Angular CLI and show this message on IE9 "SCRIPT5009: 'Promise' is undefined". I remove the comments on polyfills.ts and in IE10 and IE11 work, but in IE9 not.

user3453562
  • 111
  • 1
  • 5

1 Answers1

0

add this to your src/polyfills.ts:

import 'core-js/es6/promise';
Sebastian Viereck
  • 5,455
  • 53
  • 53