1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-28 22:30:44 +00:00
lancedikson_bowser/.babelrc

20 lines
324 B
Plaintext
Raw Normal View History

2017-04-09 14:13:00 +00:00
{
"presets": [["env", {
"useBuiltIns": true,
"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": [["env", { "targets": { "node": "current" } }]]
}
}
2017-04-09 14:13:00 +00:00
}