1
0
mirror of https://github.com/lancedikson/bowser synced 2025-12-05 06:02:14 +00:00
lancedikson_bowser/.babelrc

25 lines
443 B
Plaintext
Raw Permalink Normal View History

2017-04-09 14:13:00 +00:00
{
2025-08-09 20:47:57 +00:00
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": 3,
"modules": "cjs",
"loose": true,
"targets": {
"ie": "8",
"browsers": ">2%"
}
}
]
],
2025-08-09 20:47:57 +00:00
"plugins": ["add-module-exports"],
2018-06-30 16:21:09 +00:00
"env": {
"test": {
2025-08-09 20:47:57 +00:00
"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
}