Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
854 views
in Technique[技术] by (71.8m points)

visual studio code - Go to implementation instead of TypeScript declaration

When I click an imported variable while holding Cmd in VSCode, I often end up looking at the TypeScript declaration of that variable. Is there any way to have VSCode take me to the definition of it instead? I don't use TypeScript myself, so the feature isn't helpful to me right now.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This is currently a limitation of how VS Code handles JavaScript and TypeScript IntelliSense for external modules. See this issue for more info

To summarize: VS Code's JavaScript and TypeScript support is powered by TypeScript behind the scenes. To understand the APIs of external modules, TypeScript uses d.ts files for performance and scalability reasons. This way it does not have to try to load or parse all of the module's code itself. The downside to this approach is that we cannot map back to actual JS limitation.

To workaround this, libraries can bundle declaration maps that map from .d.ts files back to source .ts (or .js) files. However many libraries currently do not include these


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...