You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No auto-import to import the function foo and foo2
π Expected behavior
Has auto-import like in 5.3.
Additional information about the issue
This only happens in js files when trying to auto-import values from a ts file and the symbol has some alias or is a default export. This seems to have to do with #53619. In another check for type-only-location, the symbol flags are combined with flags from the aliased symbol and the symbol has flags like class and function.
The text was updated successfully, but these errors were encountered:
Why is foo not externally visible? If I type foo inside a .ts file, I get offered the default import as autocompletion. I would expect the same to be true in a .js file.
π Search Terms
default export
auto-import
barrel export
π Version & Regression Information
β― Playground Link
Reproduction repository instead of playground because it needs at least 2 files. One in ts and one in js.
https://github.com/jasonlyu123/auto-import-aliased
π» Code
π Actual behavior
No auto-import to import the function
foo
andfoo2
π Expected behavior
Has auto-import like in 5.3.
Additional information about the issue
This only happens in js files when trying to auto-import values from a ts file and the symbol has some alias or is a default export. This seems to have to do with #53619. In another check for type-only-location, the symbol flags are combined with flags from the aliased symbol and the symbol has flags like
class
andfunction
.The text was updated successfully, but these errors were encountered: