You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, ts2esm simply checks if a JS file is inside the node_modules directory of the referenced package. It doesn’t parse the package.json file of installed modules at all. It sounds like supporting this would require reading the exports field from package.json. Might take some effort to implement.
Currently, my isNodeModuleRoot can already locate the relevant package.json file. That would be a good entrypoint to build the parsing functionality. 💡
Utilizing real TypeScript resolver could help too.
Right now,
ts2esm
simply checks if a JS file is inside thenode_modules
directory of the referenced package. It doesn’t parse thepackage.json
file of installed modules at all. It sounds like supporting this would require reading theexports
field frompackage.json
. Might take some effort to implement.Relevant docs: https://devblogs.microsoft.com/typescript/announcing-typescript-4-5-beta/#package.json-exports-imports-and-self-referencing
Currently, my isNodeModuleRoot can already locate the relevant
package.json
file. That would be a good entrypoint to build the parsing functionality. 💡Utilizing real TypeScript resolver could help too.
So the logic might be like that:
firebase-functions/v1/https
, try to resolve it with typescript'sts.resolveModuleName
(see example here https://github.com/nrwl/nx/blob/master/packages/jest/plugins/resolver.ts#L69-L74)moduleResolution: NodeNext
+type: module
, means this external import is ok. left it as isThe text was updated successfully, but these errors were encountered: