How do I set up vscode to search for files that contain node_modules?

normally, neither the file name nor the content of the file contains node modules. How can I search?


There are two ways of

.
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...

Menu