In my Angular app sourcecode (built using node), I use some type from Angular itself e.g. like this:
import {HashLocationStrategy} from '@angular/common';
When I now try to navigate to the HashLocationStrategy
Angular type in VisualStudio, e.g. by choosing "Go to definition" from the context menu, I end up in the file node_modules/@angular/common/src/location/hash_location_strategy.d.ts
. That file is only a Declaration File, containing only the type signatures and not the actual implementation itself.
How can I navigate to the actual sourcecode of HashLocationStrategy
?