I'm developing Angular application in visual studio code.
Currently, I'm using search to trace and traverse component usages. Is it possible to show component hierarchy for angular components familiar to function call hierarchy? Also, is there a shortcut to jump between component implementation and html template? Lastly, I would like to navigate component inputs and outputs easily.
1 Answer 1
Angular Language Service is the best thing I know for VS Code.
I get used to WebStorm. It can show you the usages of the component across the project like this:
Also, Compodoc could be a good option while it's not exactly what you are looking for. Take a look at the example of the diagram of the Angular app. It includes not only components but also modules, services, and other artifacts.
2 Comments
Explore related questions
See similar questions with these tags.