Skip to content

Commit 98ccc25

Browse files
committed
chore: exclude dist folder from vscode watch list
1 parent 81cc361 commit 98ccc25

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
node_modules
22
*-debug.log
3-
.vscode
43
dist
54
.idea
65
*.iml

.vscode/settings.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"files.watcherExclude": {
3+
"**/.git/objects/**": true,
4+
"**/.git/subtree-cache/**": true,
5+
"**/node_modules/*/**": true,
6+
"**/dist/**": true
7+
}
8+
}

0 commit comments

Comments
 (0)