'com.facebook.react.commot.JavascriptException: Invalid or unexpected token
Solution 1:[1]
update babel.config.js of your project : (assume your metro-react-native-babel-preset is 0.58.0) from:
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
};
to:
module.exports = {
presets: [['module:metro-react-native-babel-preset', {
unstable_disableES6Transforms: true
}]],
};
finally run yarn start --reset-cache to restart app.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Jitendrasinh Zala |