Skip to content

Commit

Permalink
vscode: exclude node_modules/ + dist/
Browse files Browse the repository at this point in the history
  • Loading branch information
jcayzac committed Aug 17, 2024
1 parent dc5347e commit b861db9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"files.exclude": {
"**/.DS_Store": true,
"**/Thumbs.db": true,
".coverage": true,
".coverage.lcov": true,
"**/.coverage": true,
"**/.coverage.lcov": true,
".git": true,
"dist": true,
"node_modules": true
"**/dist": true,
"**/node_modules": true
},
"[markdown]": {
"editor.scrollbar.vertical": "hidden",
Expand Down

0 comments on commit b861db9

Please sign in to comment.