Are there any VSCode plugins or IDEs available that can display the dependency of TypeScript functions or show a call stack view?
I am looking for a way to visualize the call stack view of TypeScript functions. Is there a tool that can help with this?
For example:
function foo() {
const something = a();
const anotherThing = b();
return c(something + anotherThing)
}
function a() { return a1() }
function a1() { return a2() }
function a2() { // do something }
function b() { return b1() }
function c() { return c1() }
If possible, I would like to have a visual representation similar to this: