Issue
When clicking a variable in a ts file, it will highlight all variables of the same name even if it is not the same variable. In the existing typescript plugin, it will only highlight the correct instances of the variable
In the attached example, when clicking bar in tsgo extension, both bar will be highlighted, whereas in the existing ts plugin, only one would be highlighted.
function foo(){
let bar;
}
function baz(){
let bar
}