1
0
Fork 0
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:
Kitson Kelly 2022-03-28 20:40:39 +11:00 committed by GitHub
parent 2262097141
commit 33a8613451
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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