vscode icon indicating copy to clipboard operation
vscode copied to clipboard

Missing references in TypeScript

Open winterggg opened this issue 7 months ago • 2 comments

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:

  1. 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);
  1. Clicking A in inner.ts cannot jump to the call location in index.ts

winterggg avatar May 21 '25 06:05 winterggg