Skip to content

Commit 63d4b65

Browse files
committed
internal(vscode): Ignore various directories and files from search
1 parent 3058a8a commit 63d4b65

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.vscode/settings.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,33 @@
3030
"titleBar.inactiveBackground": "#003a67",
3131
"titleBar.inactiveForeground": "#84b8df"
3232
},
33+
"files.exclude": {
34+
"**/.yarn": true,
35+
"**/.tsbuildinfo": true,
36+
"website/.docusaurus": true
37+
},
38+
"search.exclude": {
39+
"**/.next": true,
40+
"**/.yarnrc.yml": true,
41+
"**/build": true,
42+
"**/CHANGELOG.md": true,
43+
".changeset": true,
44+
"**/package-lock.json": true,
45+
"packages/*/ts*": true,
46+
"**/dist": true,
47+
"**/dist-server": true,
48+
"packages/**/index.d.ts": true,
49+
"packages/*/lib": true,
50+
"packages/*/legacy": true,
51+
"yarn.lock": true,
52+
"**/versioned_docs": true,
53+
"**/*_versioned_docs": true,
54+
"**/v8.log": true,
55+
"website/src/components/Playground/editor-types": true
56+
},
57+
"files.readonlyExclude": {
58+
"**/.next": true,
59+
"**/v8.log": true,
60+
"website/src/components/Playground/editor-types": true
61+
},
3362
}

0 commit comments

Comments
 (0)