Код: Выделить всё
// Errors as lodash is CJS module.
import { get } from 'lodash';
// OK.
import _ from 'lodash';
const get = _.get;
Подробнее здесь: https://stackoverflow.com/questions/795 ... e-from-esm
Код: Выделить всё
// Errors as lodash is CJS module.
import { get } from 'lodash';
// OK.
import _ from 'lodash';
const get = _.get;