The solutions offered in other related questions, such as including the proper presets (es2015) in .babelrc, are already implemented in my project.
I have two projec
for a more future proof setting
npm install babel-preset-latest --save-dev
and in .babelrc
{ "presets": [ "latest" ] }
as opposed to...
npm install babel-preset-es2015 --save-dev
and
{ "presets": [ "es2015" ] }