platypush-webext/.babelrc

16 lines
312 B
Plaintext
Raw Permalink Normal View History

2020-06-12 01:03:46 +02:00
{
"plugins": [
"@babel/plugin-proposal-optional-chaining"
],
"presets": [
["@babel/preset-env", {
"useBuiltIns": "usage",
"corejs": 3,
"targets": {
// https://jamie.build/last-2-versions
"browsers": ["> 0.25%", "not ie 11", "not op_mini all"]
}
}]
]
}