We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7493ea commit 979215eCopy full SHA for 979215e
tsparser/src/parser/types/object.rs
@@ -246,7 +246,10 @@ impl NSData {
246
247
Reexport::All { import_path } => {
248
if let Some(module) = ctx.resolve_module_import(curr_module, import_path) {
249
- if let Some(export) = module.data.get_named_export(ctx, curr_module, needle)
+ if let Some(export) =
250
+ module
251
+ .data
252
+ .get_named_export(ctx, &module.base.swc_file_path, needle)
253
{
254
return Some(export);
255
}
0 commit comments