mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
fix(lsp): watch .jsonc files (#14135)
This commit is contained in:
parent
2262097141
commit
33a8613451
1 changed files with 1 additions and 1 deletions
|
@ -762,7 +762,7 @@ impl Inner {
|
||||||
let watch_registration_options =
|
let watch_registration_options =
|
||||||
DidChangeWatchedFilesRegistrationOptions {
|
DidChangeWatchedFilesRegistrationOptions {
|
||||||
watchers: vec![FileSystemWatcher {
|
watchers: vec![FileSystemWatcher {
|
||||||
glob_pattern: "**/*.json".to_string(),
|
glob_pattern: "**/*.json{c}".to_string(),
|
||||||
kind: Some(WatchKind::Change),
|
kind: Some(WatchKind::Change),
|
||||||
}],
|
}],
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue