在我的 Angular 应用程序源代码(使用节点构建)中,我使用了 Angular 本身的某种类型,例如:
import {HashLocationStrategy} from '@angular/common';
当我现在尝试导航到HashLocationStrategy
VisualStudio 中的 Angular 类型时,例如通过从上下文菜单中选择“转到定义”,我最终进入了文件node_modules/@angular/common/src/location/hash_location_strategy.d.ts
. 该文件只是一个声明文件,仅包含类型签名而不包含实际实现本身。
如何导航到 的实际源代码HashLocationStrategy
?