Skip to content

Commit

Permalink
Fix VSCode search exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
tsov committed Oct 12, 2023
1 parent 36e61b6 commit a7ddfe1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"coverage": true
},
"search.exclude": {
"**/node_modules": true,
".rollup.cache": true,
"coverage": true,
"build": true,
"docs": true
"node_modules/**/*": true,
".rollup.cache/**/*": true,
"coverage/**/*": true,
"build/**/*": true,
"docs/**/*": true
},
"[typescript]": {
"editor.formatOnSave": false,
Expand Down

0 comments on commit a7ddfe1

Please sign in to comment.