diff options
Diffstat (limited to 'client/src/polyfills.browser.ts')
-rw-r--r-- | client/src/polyfills.browser.ts | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/client/src/polyfills.browser.ts b/client/src/polyfills.browser.ts deleted file mode 100644 index b1a631655..000000000 --- a/client/src/polyfills.browser.ts +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | /* tslint: disable */ | ||
2 | |||
3 | // Polyfills | ||
4 | // (these modules are what are in 'angular2/bundles/angular2-polyfills' so don't use that here) | ||
5 | |||
6 | require('intl'); | ||
7 | require('intl/locale-data/jsonp/en.js'); | ||
8 | import 'ie-shim'; // Internet Explorer | ||
9 | |||
10 | // Prefer CoreJS over the polyfills above | ||
11 | import 'core-js/es6/symbol'; | ||
12 | import 'core-js/es6/object'; | ||
13 | import 'core-js/es6/function'; | ||
14 | import 'core-js/es6/parse-int'; | ||
15 | import 'core-js/es6/parse-float'; | ||
16 | import 'core-js/es6/number'; | ||
17 | import 'core-js/es6/math'; | ||
18 | import 'core-js/es6/string'; | ||
19 | import 'core-js/es6/date'; | ||
20 | import 'core-js/es6/array'; | ||
21 | import 'core-js/es6/regexp'; | ||
22 | import 'core-js/es6/map'; | ||
23 | import 'core-js/es6/set'; | ||
24 | import 'core-js/es6/weak-map'; | ||
25 | import 'core-js/es6/weak-set'; | ||
26 | import 'core-js/es6/typed'; | ||
27 | import 'core-js/es6/reflect'; | ||
28 | // see issue https://github.com/AngularClass/angular2-webpack-starter/issues/709 | ||
29 | // import 'core-js/es6/promise'; | ||
30 | |||
31 | import 'core-js/es7/reflect'; | ||
32 | import 'zone.js/dist/zone'; | ||
33 | |||
34 | if ('production' !== ENV) { | ||
35 | Error.stackTraceLimit = Infinity; | ||
36 | |||
37 | require('zone.js/dist/long-stack-trace-zone'); | ||
38 | } | ||