Skip to content

Commit 7a6f44d

Browse files
committed
chore: Ignore generated files in VS Code
1 parent 148fb97 commit 7a6f44d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.vscode/settings.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@
22
{
33
"files.exclude": {
44
".nyc_output": true,
5-
"node_modules": true
5+
"node_modules": true,
6+
"web/*.js": true,
7+
"web/*.map": true
68
},
79
"search.exclude": {
8-
"**/benchmarks/jison": true,
9-
"**/benchmarks/pegjs": true,
10+
"**/benchmarks": true,
1011
"**/coverage": true,
1112
"**/test/fails": true,
1213
"**/test/passes": true,
1314
"**/test/recursive": true,
14-
"**/test/v8": true
15+
"**/test/v8": true,
16+
"**/test/typings.test.js": true
1517
},
1618
"eslint.enable": true
1719
}

0 commit comments

Comments
 (0)