Skip to content

Commit 85c86bc

Browse files
Fix IE11 compatibility
Signed-off-by: Christoph Wurst <[email protected]>
1 parent c1f7c7b commit 85c86bc

File tree

3 files changed

+27
-43
lines changed

3 files changed

+27
-43
lines changed

Diff for: .babelrc.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
presets: [
3+
[
4+
'@babel/preset-env',
5+
{
6+
targets: {
7+
browsers: ['last 2 versions', 'ie >= 11']
8+
}
9+
}
10+
]
11+
]
12+
}

Diff for: package-lock.json

+14-38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,5 @@
3232
"webpack": "^4.28.4",
3333
"webpack-cli": "^3.2.1",
3434
"webpack-merge": "^4.2.1"
35-
},
36-
"browserslist": [
37-
"last 2 versions",
38-
"ie >= 11"
39-
]
35+
}
4036
}

0 commit comments

Comments
 (0)