UNPKG

347 BJavaScriptView Raw
1module.exports = () => ({
2 manipulateOptions: (opts, parserOptions) => {
3 let decoratorsPluginIndex = parserOptions.plugins.findIndex(
4 p =>
5 Array.isArray(p) &&
6 p[0] === 'decorators' &&
7 p[1].decoratorsBeforeExport &&
8 p[1].legacy
9 );
10
11 parserOptions.plugins.splice(decoratorsPluginIndex, 1);
12 },
13});