Ошибка SCRIPT1002 / 1010 в IE11 при использовании полифилов - PullRequest
0 голосов
/ 27 декабря 2018

Я использую стек Typescript + React + Webpack (для файлов TS / TSX у меня есть awesome-typescript-loader).Я пытаюсь запустить свое приложение на IE11, но у меня возникли проблемы в отладчике IE.

Отладчик показывает первую строку SCRIPT1002 @ и строку с функцией стрелки.Я обработал это, добавив:

require('@babel/plugin-proposal-object-rest-spread');
require('@babel/plugin-transform-arrow-functions');
require('@babel/plugin-proposal-class-properties');

в файл polyfills.js в config dir.Мой webpack.config.prod.js содержит:

entry: [require.resolve('./polyfills'), paths.appIndexJs],

и polyfills.js:

require('@babel/plugin-proposal-object-rest-spread');
require('@babel/plugin-transform-arrow-functions');
require('@babel/plugin-proposal-class-properties');

'use strict';

if (typeof Promise === 'undefined') {
  // Rejection tracking prevents a common issue where React gets into an
  // inconsistent state due to an error, but it gets swallowed by a Promise,
  // and the user has no idea what causes React's erratic future behavior.
  require('promise/lib/rejection-tracking').enable();
  window.Promise = require('promise/lib/es6-extensions.js');
}

// fetch() polyfill for making API calls.
require('whatwg-fetch');

// Object.assign() is commonly used with React.
// It will use the native implementation if it's present and isn't buggy.
Object.assign = require('object-assign');

// In tests, polyfill requestAnimationFrame since jsdom doesn't provide it yet.
// We don't polyfill it in the browser--this is user's responsibility.
if (process.env.NODE_ENV === 'test') {
  require('raf').polyfill(global);
}

После этого SCRIPT1002 я получаю ошибку SCRIPT1010, как на изображении: https://i.imgur.com/9voXrwO.png

и я застрял.Есть идеи?

...