UNPKG

225 BJavaScriptView Raw
1module.exports = {
2 presets: [
3 [
4 '@babel/env',
5 {
6 targets: {
7 browsers: ['> 1%']
8 }
9 }
10 ]
11 ],
12 plugins: [
13 ['@babel/plugin-transform-for-of', {'assumeArray': true}]
14 ]
15};