Package.json file has a field "module" (proposal). When I edit package.json, vscode obviously aware of this field as it shows description for it:

However when I try to import this package from another module, intellisense only uses package.json/main to obtain exports, ignoring field module, which supposed to override main in case of module importing. Usually main points to a bundle (e.g. generated by webpack), which does not export jsdoc the right way.
Please support package.json/module field, so when developer specifies it, intellisense will use that over package.json/main to obtain exported symbols.