<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> From: https://github.com/Microsoft/vscode/issues/22977 **TypeScript Version:** 2.2.1 **Code** **a.ts** ```ts export const abc = 123 ``` **b.ts** ```ts import {abc} from './a' ``` Send a `references` command to the TSServer for the `./a` in `b.ts` **Expected behavior:** Returns results for all places where `a.ts` is imported or required **Actual behavior:** No results returned
From: microsoft/vscode#22977
TypeScript Version: 2.2.1
Code
a.ts
b.ts
Send a
referencescommand to the TSServer for the./ainb.tsExpected behavior:
Returns results for all places where
a.tsis imported or requiredActual behavior:
No results returned