I am trying to use gulp in order to minify a folder containing JS files. However, one of the files has the above error, preventing it from being minified.
I managed
Add the babel-preset-es2015 dependency to fix this.
babel-preset-es2015
And also add 'es2015' in .babelrc file.
'es2015'
.babelrc
json { "presets": ["es2015"] }