我使用vscode来处理node.js / Typescript项目。 我有以下require语句:
const dbOperations = require("./dbOperations");
以及随后在代码中的语句:
dbOperations.writeToTable();
'writeToTable'是dbOperation模块中的方法。当我右键单击最后一行并选择选项“转到定义”时,什么也没有发生。
您知道我如何使vscode导航到'require'语句导入的方法吗?