1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-28 14:20:45 +00:00
lancedikson_bowser/.babelrc

20 lines
355 B
Plaintext
Raw Normal View History

2017-04-09 14:13:00 +00:00
{
"presets": [["@babel/preset-env", {
"useBuiltIns": "entry",
"modules": "umd",
"targets": {
"ie": "8",
"browsers": ">2%"
2018-07-09 18:26:19 +00:00
}
}]],
"plugins": [
"add-module-exports"
],
2018-06-30 16:21:09 +00:00
"env": {
"test": {
"plugins": [ "istanbul" ],
"presets": [["@babel/preset-env", { "targets": { "node": "current" } }]]
2018-06-30 16:21:09 +00:00
}
}
2017-04-09 14:13:00 +00:00
}