8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
export default function () {
|
|
return {
|
|
manipulateOptions(opts, parserOpts) {
|
|
parserOpts.features["es7.trailingFunctionCommas"] = true;
|
|
}
|
|
};
|
|
}
|