Skip to content

Commit

Permalink
fix(linting): fix some TS linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
christophercr committed Feb 21, 2018
1 parent 2b6a160 commit 8d5d6a8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions starter/src/polyfills.browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,31 @@

/***************************************************************************************************
* BROWSER POLYFILLS
*
*
* See: https://angular.io/guide/browser-support#optional-browser-features-to-polyfill
*/

/**
* IE11 requires all of the following polyfills.
*
*
* Polyfill: https://github.com/zloirock/core-js
*/
*/
import 'core-js/es6';
import 'core-js/es7/reflect';
import 'core-js/stage/4';

/**
* IE11 and Edge require this to support Server-sent events
* https://caniuse.com/#feat=eventsource
*
*
* Polyfill: https://github.com/Yaffle/EventSource
*/
import 'event-source-polyfill';

/**
* IE11 requires Element.classList for NgClass support on SVG elements
* See: https://caniuse.com/#feat=classlist
*
*
* https://developer.mozilla.org/en-US/docs/Web/API/Element/classList
* https://angular.io/guide/browser-support#classlist
* Polyfill: https://github.com/eligrey/classList.js
Expand All @@ -51,7 +51,7 @@ import 'eligrey-classlist-js-polyfill';
* All but Chrome, Firefox and Opera require this to support Web Animations from
* `@angular/animations` and `@angular/platform-browser/animations`.
* See: http://caniuse.com/#feat=web-animation
*
*
* Polyfill: https://github.com/web-animations/web-animations-js
*/
import 'web-animations-js';
Expand Down

0 comments on commit 8d5d6a8

Please sign in to comment.