React packing error

Why can my react not be packaged and run on IE, and then report that "Unhandled promise rejectionTypeError: cannot get the value of the attribute "call": the object is null or undefined". No matter what mode I switch, I report this error. Ask God to save me!
this is my .babelrc
`

{
  "presets": ["react", "env","es2015","stage-0"],
  "env": {
    "development": {
    "plugins": [["react-transform", {
       "transforms": [{
         "transform": "react-transform-hmr",
         
         "imports": ["react"],
         
         "locals": ["module"]
       }]
     }
     ],
     "syntax-dynamic-import",
     "transform-runtime",
     "transform-remove-console"
     ],
    },
    "production": {
      "syntax-dynamic-import",
     "transform-runtime",
     "transform-remove-console"
      ]
    }
  }
}

`

this is part of my webpak.config
`

            {
            test: /\.css$/, //cssjs
            use: [{
                loader: "style-loader",
                options: {
                    singleton: false
                }
                // loader: "style-loader!css-loader"
            }, {
                loader: "css-loader",
                options: { //
                    Minimize: true, //
                    modules: true, //  css modules
                    localIdentName: "[name]__[local]--[hash:base64:5]" // css
                }

            }],
            exclude: /src/
        }, {
            test: /\.css$/,
            exclude: /(node_modules)/,
            loader: "style-loader!css-loader?modules&importLoaders=1&localIdentName=[name]_[local]_[hash:base64:5]"
        }`




it's not a packaging problem, it's something that promise reported wrong and you didn't deal with it. If IE alone doesn't work, it may be the IE version. Or one of the words is not written correctly


indicates that your project is packaged and does not support IE. The reason probably lies in Promise,
you can output Promise in the IE control too to see if there is any.

if not, you need to make sure that your promise polyfill is loaded and running correctly.

you can try to introduce:

<script src = "https://cdn.polyfill.io/v2/polyfill.min.js"></script> 
Menu