Did you know that you have the option to enable specific settings in VSCode in order to view references within the editor? Take a look at the codes below:
"typescript.implementationsCodeLens.enabled": true,
"javascript.referencesCodeLens.enabled": true
In the image provided, it may appear that there are no references (indicated by '0 references' above the method name 'myOperations'). However, in reality, references do exist within an Angular template:
<div class="some-cool-class">
<my-super-thing
*ngIf="ifItIsCool"
(operations)="myOperations($event)"
>
</my-super-thing>
Is there a way to address this issue? How can references (such as method calls) from templates be viewed?