IE11 и Angular Проблема - ОШИБКА TypeError: Объект не поддерживает это действие - PullRequest
1 голос
/ 15 февраля 2020

Приложение работает на chrome edge firefox, а не на ie11. В ошибке не упоминается действие .. есть идеи о том, что это за действие? Прикрепление скриншота ошибки и polyfill.ts.

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';

import 'core-js/es7/object';
import 'core-js/es7/array';

import 'classlist.js';  // Run `npm install --save classlist.js`.

import 'core-js/es6/reflect';

import 'core-js/es7/reflect';


import 'web-animations-js';  // Run `npm install --save web-animations-js`.


(window as any).__Zone_enable_cross_context_check = true;

import 'zone.js/dist/zone';  // Included with Angular CLI.

if (!Element.prototype.matches) {
  Element.prototype.matches = (Element.prototype as any).msMatchesSelector ||
    Element.prototype.webkitMatchesSelector;
}

import 'intl'; // Run `npm install --save intl`.

import 'intl/locale-data/jsonp/en';

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...