mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -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 =
|
||||
DidChangeWatchedFilesRegistrationOptions {
|
||||
watchers: vec![FileSystemWatcher {
|
||||
glob_pattern: "**/*.json".to_string(),
|
||||
glob_pattern: "**/*.json{c}".to_string(),
|
||||
kind: Some(WatchKind::Change),
|
||||
}],
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue