I\'ve installed Node 8.9.1 (same problem happens in v10.5.0).
I\'m trying to use named imports from npm packages in a file with the .mjs
.mjs
For me loading lodash as ES Library did the job, here is the NPM Package for the same.
The Lodash library exported as ES modules. https://www.npmjs.com/package/lodash-es
Then you can import utils in normal way.
import { shuffle } from 'lodash-es';