normally, neither the file name nor the content of the file contains node modules. How can I search?
normally, neither the file name nor the content of the file contains node modules. How can I search?
.
the first is simple, right-click the node--modules folder directly, and one option is folder search, specifically to search the contents of this folder.
the second is to configure setting.json globally. Vscode defaults, right? node_modules is excluded from the search. This configuration opens and changes to false, as follows.
I hope to adopt it!
"search.exclude": {
"**/node_modules": false,
"**/bower_components": true
},
change the configuration file https://code.visualstudio.com...