Skip to content

Commit b0fe784

Browse files
authored
chore: exclude more things from file watcher (#20434)
Was hitting limits.
2 parents d50afdb + dcef6fd commit b0fe784

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

.vscode/settings.json

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,15 +197,27 @@
197197
"bb-pilcom/Cargo.toml"
198198
],
199199
"files.watcherExclude": {
200+
"**/.docusaurus/**": true,
200201
"**/.git/**": true,
201-
"**/node_modules/**": true,
202202
"**/.hg/store/**": true,
203-
"**/target/**": true,
204-
"**/l1-contracts/lib/**": true,
203+
"**/.yarn/**": true,
205204
"**/barretenberg/cpp/build*/**": true,
206205
"**/barretenberg/cpp/src/wasi-sdk*/**": true,
206+
"**/barretenberg/docs/build/**": true,
207+
"**/barretenberg/docs/static/**": true,
208+
"**/barretenberg/docs/versioned_docs/**": true,
207209
"**/dest/**": true,
208-
"**/noir/noir-repo/docs/versioned_docs/**": true
210+
"**/docs/.docusaurus/**": true,
211+
"**/docs/build/**": true,
212+
"**/docs/developer_versioned_docs/**": true,
213+
"**/docs/network_versioned_docs/**": true,
214+
"**/docs/processed-docs-cache/**": true,
215+
"**/docs/processed-docs/**": true,
216+
"**/docs/static/**": true,
217+
"**/l1-contracts/lib/**": true,
218+
"**/node_modules/**": true,
219+
"**/noir/noir-repo/docs/versioned_docs/**": true,
220+
"**/target/**": true
209221
},
210222
"files.trimTrailingWhitespace": true,
211223
"files.insertFinalNewline": true,

0 commit comments

Comments
 (0)