Babel ES6 error: "This API has been removed..."

I have a meteor method call that has this below ES6 code which fails to transpile due to the error noted below.

theOthers.forEach(member => {
    if (member.notifications) {
      const contextIdIndex = member.notifications.findIndex(
        notification => notification.contextId === contextId
      );
      if (contextIdIndex !== -1) {
        const notifications = [...member.notifications];
        notifications[contextIdIndex].count += 1;
        Meteor.users.updateOne(member.memberId, {
          $set: {
            notifications: notifications
          }
        });
      }
    }
  });

The transpiling failure error is:

This API has been removed. If you're looking for this functionality in Babel 7, you should import the '@babel/helper-module-imports' module and
   use the functions exposed  from that module, such as 'addNamed' or 'addDefault'.

Any suggestions? Note that I have bunch of similar ES6 code that works just fine.