mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-10 06:15:49 +00:00
336ef55c1f
The React Native packager does not transform for-of loops, and minification step uses UglifyJS, which does not yet support ES6 syntax. Fixes #120
14 lines
162 B
Plaintext
14 lines
162 B
Plaintext
{
|
|
"env": {
|
|
"commonjs": true,
|
|
"browser": true,
|
|
"es6": true,
|
|
},
|
|
"ecmaFeatures": {
|
|
"forOf": false
|
|
},
|
|
"globals": {
|
|
"global": true
|
|
}
|
|
}
|