как мне избавиться от ошибки '$' не определено в IE 11? Я использую реагировать с машинописью (traget es2015). Конфигурация Babel в конфиге webpack выглядит следующим образом
test: /\.(tsx|ts)$/,
loader: "awesome-typescript-loader",
exclude: /node_modules/,
options: {
"useBabel": true,
"babelOptions": {
"babelrc": false, /* Important line */
"presets": [
'@babel/preset-env',
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-transform-classes", { "loose": true }
],
[
"@babel/plugin-transform-regenerator", { "asyncGenerators": false, "generators": false, "async": false }
],
[
"@babel/plugin-transform-parameters"
],
[
"@babel/plugin-transform-block-scoping"
],
[
"@babel/plugin-transform-typeof-symbol"
]
]
},
"babelCore": "@babel/core"
}