Babel

Create a .babelrc file in your project folder and add the following JSON with presets and plugins specified.

mern-simplesetup/.babelrc:

{    "presets": [      "env",      "stage-2"      "react"    ],    "plugins": [      "react-hot-loader/babel"    ]}

The react-hot-loader/babel plugin is required by the react-hot-loader module to compile React components.

Get Full-Stack React Projects now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.