babel-preset-react-app, is importing the “@babel/plugin-proposal-private-property-in-object” package without declaring it in its dependencies

Running the below command solved my issue

npm install --save-dev @babel/plugin-proposal-private-property-in-object

use –save-dev to install it under devDependencies

Leave a Comment