@rychkog I'm getting this error for every import of lodash:
Module '"/home/lovery/magic-workspace/js/node_modules/@types/lodash/get/index"' resolves to a non-module entity and cannot be imported using this construct.
If I change the import from import * as _get from 'lodash/get'; to import * as _ from 'lodash'; the error disappear. Do you have any I idea what is this happening?
@rychkog I'm getting this error for every import of lodash:
Module '"/home/lovery/magic-workspace/js/node_modules/@types/lodash/get/index"' resolves to a non-module entity and cannot be imported using this construct.If I change the import from
import * as _get from 'lodash/get';toimport * as _ from 'lodash';the error disappear. Do you have any I idea what is this happening?