We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
With the new node.js 8.5 ESM support importing CJS modules as if they had named exports is not supported. (Unlike Babel)
Eg:
// bad import { get } from 'lodash'; //good import _ from 'lodash'; const get = _.get; //good import { get } from 'lodash-es';