1
0
mirror of https://github.com/lancedikson/bowser synced 2026-03-02 03:40:27 +00:00
Files
lancedikson_bowser/.babelrc

21 lines
343 B
Plaintext
Raw Normal View History

2017-04-09 17:13:00 +03:00
{
"presets": [["env", {
"useBuiltIns": true,
"modules": "umd",
"targets": {
"ie": "8",
"browsers": ">2%"
},
"debug": true
}]],
"plugins": [
"add-module-exports"
],
2018-06-30 19:21:09 +03:00
"env": {
"test": {
"plugins": [ "istanbul" ],
"presets": [["env", { "targets": { "node": "current" } }]]
}
}
2017-04-09 17:13:00 +03:00
}