Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你们中的任何人都遇到过这个问题吗,vscode 总是将您带到函数的类型定义而不是实现。
例如,我右键单击下面的 react setState 函数,
VS 代码向我展示了打字稿文件。
如果它的问题是,我该如何解决它。如果不是,那么我如何查看实现而不是函数的类型定义。
这是 VS Code 智能感知的限制。我们不会尝试从内部解析 jsnode_modules以获得 IntelliSense,因此我们无法映射回原始源代码。相反,我们依靠*.d.ts提供定义。
node_modules
*.d.ts
这两个问题正在跟踪对此的可能改进: