Skip to content

No auto-import from aliased symbol from ts files in js filesΒ #57740

@jasonlyu123

Description

@jasonlyu123

πŸ”Ž Search Terms

default export
auto-import
barrel export

πŸ•— Version & Regression Information

  • This changed between versions 5.3 and 5.4

⏯ 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

// foo.ts

export default function foo() {}

function foo2() {}
export { foo2 }
// index.js
foo
// ^trigger completion here

πŸ™ Actual behavior

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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions