npm install and make get many similar errors like the following.
ERROR in ./node_modules/react-native/Libraries/Animated/src/Easing.js 64:16
Module parse failed: Unexpected token (64:16)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| * A stepping function, returns 1 for any positive value of `n`.
| */
> static step0(n: number): number {
| return n > 0 ? 1 : 0;
| }
The errors looks like babel did not work for node_modules/react-native/Libraries .
I got no errors with stable_6433, but we’re building features branching from stable.
My babel.config.js stays the same with 6433 and not using .babelrc.
I found .flowconfig was removed from master branch. Is it relevant ?
already using @babel/preset-env, @babel/preset-flow, @babel/preset-react
need to add more plugins to webpack.config.js ?