I\'m looking for a way to completely disable generator functions transform with babel. With babel 5 there was a blacklist option, but it seems that with babel 6 the
blacklist
Have you tried "exclude"? Like:
{ "presets": [ ["env", { "exclude": ["transform-regenerator"] }] ] }
Please see https://babeljs.io/docs/plugins/preset-env/#optionsexclude for details.