1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-24 21:35:06 +03:00
guide/front/.babelrc

22 lines
438 B
Plaintext
Raw Normal View History

2018-09-02 16:04:44 +03:00
{
"presets": [
["@babel/env", {
"targets": {
"browsers": ["last 3 versions", "> 2%", "ie >= 10", "Firefox >= 30", "Chrome >= 30"]
},
"modules": false,
"loose": true,
"useBuiltIns": "entry"
}]
2018-09-02 16:04:44 +03:00
],
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-syntax-dynamic-import"
2018-09-02 16:04:44 +03:00
],
"env": {
"test": {
"plugins": ["transform-es2015-modules-commonjs"]
2018-09-02 16:04:44 +03:00
}
}
}