8 lines
145 B
JavaScript
8 lines
145 B
JavaScript
export default function() {
|
|
return {
|
|
manipulateOptions(opts, parserOpts) {
|
|
parserOpts.plugins.push("asyncGenerators");
|
|
},
|
|
};
|
|
}
|