Is there a way to invoke the "getReferencedSymbolsForNode()" function using TypeScript Compiler API?
You can find the definition of this function here: https://github.com/Microsoft/TypeScript/blob/master/src/services/findAllReferences.ts
I am struggling with understanding how to utilize it through the TS Compiler API.
My goal is to retrieve all filenames that reference a specified ts.Node.
In simpler terms, I am looking to fetch the same list of filenames that Atom/Visual Studio Code provides when pressing Shift+F12 (only filenames):