Open
Description
Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: stable - April 2025 (version 1.100.2) & Insider - May 2025 (version 1.101)
- OS Version: macOS 15.4.1
Steps to Reproduce:
- Codes:
a/index.ts
import * as Inner from "./inner";
export const Consts = {
Inner
}
a/inner.ts
export const A = "A";
index.ts
import { Consts } from "./a";
console.log(Consts.Inner.A);
- Clicking A in inner.ts cannot jump to the call location in index.ts