1
0
mirror of https://github.com/lancedikson/bowser synced 2026-02-10 01:50:10 +00:00
lancedikson_bowser/.babelrc

22 lines
395 B
Plaintext
Raw Normal View History

2017-04-09 14:13:00 +00:00
{
"presets": [["@babel/preset-env", {
"useBuiltIns": "entry",
2026-02-07 17:48:20 +00:00
"corejs": 3,
"modules": "cjs",
"loose": true,
"targets": {
2026-02-07 17:48:20 +00:00
"ie": "11",
"browsers": ">0.25%"
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
}