[vscode] Exclude api_docs directory from search and watch (#115786)

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
Tyler Smalley 2021-10-20 09:53:19 -07:00 committed by GitHub
parent 9e4e3ef9e4
commit 4749e933b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,21 +20,23 @@ export const MANAGED_CONFIG_KEYS: ManagedConfigKey[] = [
{
key: 'files.watcherExclude',
value: {
['**/.eslintcache']: true,
['**/.es']: true,
['**/.yarn-local-mirror']: true,
['**/.chromium']: true,
['**/packages/kbn-pm/dist/index.js']: true,
['**/.es']: true,
['**/.eslintcache']: true,
['**/.yarn-local-mirror']: true,
['**/*.log']: true,
['**/api_docs']: true,
['**/bazel-*']: true,
['**/node_modules']: true,
['**/packages/kbn-pm/dist/index.js']: true,
['**/target']: true,
['**/*.log']: true,
},
},
{
key: 'search.exclude',
value: {
['**/packages/kbn-pm/dist/index.js']: true,
['**/api_docs']: true,
},
},
{