Skip to main content

2 posts tagged with "clean code"

View All Tags

· One min read
Luiz Rosalba

Vscode won't search node modules by default. Vs code have some default patterns to exclude folders from search , local history, watcher, auto reveal and auto import.

To make Vscode search in node_modules and others patterns included on search patterns deselect the button on search :

Disable exclude Patter

To edit the patterns :

"Open VS User Settings (Main menu: File > Preferences > Settings). This will open the setting screen. Search for files:exclude in the search at the top. Configure the User Setting with new glob patterns as needed. In this case add this pattern node_modules/ then click OK. The pattern syntax is powerful."

exlude Pattern config

Source :

https://zditect.com/blog/50686898.html