I faced the same issue while trying to transpile some jsx with babel. Below is the solution that worked for me. You can add the following json to your .babelrc
{"presets": [ ["@babel/preset-react", { "targets": { "browsers": ["last 3 versions", "safari >= 6"] } } ] ],"plugins": [["@babel/plugin-proposal-class-properties"]]}