microsoft/typescript-go

auto import not working in vscode

Closed this issue · 1 comments

Steps to reproduce

create a module
eg: bar.ts

export function foobar() {
  console.log("foo");
}

main.ts

// placing the cursor at the end of foobar and hitting ctrl + . it doesn't bring that list of potetial imports
function useFoo(){
 foobar
}

Behavior with typescript@5.8

Image

Behavior with tsgo

Image

Duplicate of #1084