Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 912 Bytes

2018-10-05-babel-setup.md

File metadata and controls

32 lines (21 loc) · 912 Bytes

Babel Setup

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

CLI + Core

To transpile you need to add @babel/core @babel/cli see docs for more info.

npm install @babel/core @babel/cli --save-dev

Presets

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"
	]
}