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
In my project, I create a lib module and linked it to the global module by command npm link: (https://docs.npmjs.com/cli/link). But in the editor, I cannot navigate to that module.
Steps to Reproduce:
Create a node module name my_lib, make it global by npm link
Extra step is to check if it work correctly by npm -g ls | grep my_lib
In your code, import that lib: const my_lib = require('my_lib');
Try to using the inner function, CMD + click, find the function... VSCode cannot navigate to the linked folder.
The text was updated successfully, but these errors were encountered:
In my project, I create a lib module and linked it to the global module by command
npm link
: (https://docs.npmjs.com/cli/link). But in the editor, I cannot navigate to that module.Steps to Reproduce:
my_lib
, make it global bynpm link
Extra step is to check if it work correctly by
npm -g ls | grep my_lib
const my_lib = require('my_lib');
The text was updated successfully, but these errors were encountered: