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
It is not possible to run analyzer with moduleResolution: 'node' with a virtual filesystem (i.e. using a loader that draws file contents from some other places than standard local filesystem.)
First obstacle to this is that the resolve calls are using the synchronous version, i.e. require('resolve').sync(). We need to convert this to use the async version of the resolver and then we should find a way to plug-in the analyzer's loader to return the various package.json files that are requested during the resolution steps.
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue has been automatically closed after being marked stale. If you're still facing this problem with the above solution, please comment and we'll reopen!
It is not possible to run analyzer with
moduleResolution: 'node'
with a virtual filesystem (i.e. using a loader that draws file contents from some other places than standard local filesystem.)First obstacle to this is that the resolve calls are using the synchronous version, i.e.
require('resolve').sync()
. We need to convert this to use the async version of the resolver and then we should find a way to plug-in the analyzer's loader to return the various package.json files that are requested during the resolution steps.The text was updated successfully, but these errors were encountered: