diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-07-05 12:43:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-05 12:43:22 -0400 |
commit | 2e7bcb422d593248cfb654ee1b7ffd341c83353c (patch) | |
tree | 24665df578567a724c2e92e9b084fdacde3823e7 /cli/args | |
parent | cd2525d4cff4e18b1e3e7d29458079942ba2b6c5 (diff) |
fix(vendor): support import mapped jsxImportSource (#19724)
Closes #16108
Diffstat (limited to 'cli/args')
-rw-r--r-- | cli/args/config_file.rs | 2 |
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, |