Got the same issue in my webpack/react project - it seems that there was an issue with the .babelrc file.
I updated it as seen below and it did the trick:
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
}