summaryrefslogtreecommitdiff
path: root/cli/args
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-01-28 10:18:32 -0500
committerGitHub <noreply@github.com>2023-01-28 10:18:32 -0500
commitfe11df09b15088f5d33a086cc416ae9eaa68f728 (patch)
tree4a9fc914b6377f6096df8dd5542882be0c09d7bd /cli/args
parent1803df7d3a3406d7a21e7aa0d3e26d807d042092 (diff)
fix(lsp): update document dependencies on configuration change (#17556)
Diffstat (limited to 'cli/args')
-rw-r--r--cli/args/config_file.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/args/config_file.rs b/cli/args/config_file.rs
index ad204f449..160b02317 100644
--- a/cli/args/config_file.rs
+++ b/cli/args/config_file.rs
@@ -28,6 +28,7 @@ use std::path::PathBuf;
pub type MaybeImportsResult =
Result<Option<Vec<(ModuleSpecifier, Vec<String>)>>, AnyError>;
+#[derive(Hash)]
pub struct JsxImportSourceConfig {
pub default_specifier: Option<String>,
pub module: String,