Skip to content

Commit

Permalink
resolve paths against repo root
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Aug 25, 2021
1 parent 61ade82 commit 974b291
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/kbn-dev-utils/src/vscode_config/managed_config_keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export const MANAGED_CONFIG_KEYS: ManagedConfigKey[] = [
key: 'files.watcherExclude',
value: {
[Path.resolve(REPO_ROOT, '.eslintcache')]: true,
[Path.resolve('build')]: true,
[Path.resolve('.es')]: true,
[Path.resolve('.yarn-local-mirror')]: true,
[Path.resolve('.chromium')]: true,
[Path.resolve('data')]: true,
[Path.resolve(REPO_ROOT, 'build')]: true,
[Path.resolve(REPO_ROOT, '.es')]: true,
[Path.resolve(REPO_ROOT, '.yarn-local-mirror')]: true,
[Path.resolve(REPO_ROOT, '.chromium')]: true,
[Path.resolve(REPO_ROOT, 'data')]: true,
['**/bazel-*']: true,
['**/node_modules']: true,
['**/target']: true,
Expand Down

0 comments on commit 974b291

Please sign in to comment.