1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-06 22:35:51 -05:00

fix(lsp): watch .jsonc files (#14135)

This commit is contained in:
Kitson Kelly 2022-03-28 20:40:39 +11:00 committed by David Sherret
parent 51ac189cd5
commit 11011506e1

View file

@ -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),
}],
};