Skip to content

Commit

Permalink
fix(decorators/mui): nullish coalescing operator
Browse files Browse the repository at this point in the history
  • Loading branch information
soup-in-boots committed May 12, 2022
1 parent b4dd1ec commit cd45170
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/decorator-mui/babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ module.exports = function (api) {
],
'@babel/preset-react',
],
plugins: ['@babel/plugin-proposal-object-rest-spread'],
plugins: [
'@babel/plugin-proposal-object-rest-spread',
'@babel/plugin-proposal-nullish-coalescing-operator',
],
};
};

0 comments on commit cd45170

Please sign in to comment.