While setting up create-react-app
as a way to build a React component as described in adr notes I've run into a transpiling issue as described here. So here's a few notes on the fix.
To get setup with babel for transpiling component you need
To transpile you need to add @babel/core
@babel/cli
see docs for more info.
npm install @babel/core @babel/cli --save-dev
For the React presents you can use the official once by adding @babel/preset-react, see docs for more info.
npm install @babel/preset-react --save-dev
And make sure .babeblrc
preset is setup as follows
{
"presets": [
"@babel/preset-react"
]
}