summaryrefslogtreecommitdiff
path: root/cli/args
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-07-05 12:43:22 -0400
committerGitHub <noreply@github.com>2023-07-05 12:43:22 -0400
commit2e7bcb422d593248cfb654ee1b7ffd341c83353c (patch)
tree24665df578567a724c2e92e9b084fdacde3823e7 /cli/args
parentcd2525d4cff4e18b1e3e7d29458079942ba2b6c5 (diff)
fix(vendor): support import mapped jsxImportSource (#19724)
Closes #16108
Diffstat (limited to 'cli/args')
-rw-r--r--cli/args/config_file.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/args/config_file.rs b/cli/args/config_file.rs
index 9d1137b27..76b522a41 100644
--- a/cli/args/config_file.rs
+++ b/cli/args/config_file.rs
@@ -28,7 +28,7 @@ use std::path::PathBuf;
pub type MaybeImportsResult =
Result<Vec<deno_graph::ReferrerImports>, AnyError>;
-#[derive(Hash)]
+#[derive(Debug, Clone, Hash)]
pub struct JsxImportSourceConfig {
pub default_specifier: Option<String>,
pub module: String,