使用VS Code从.ts文件打开导入的类库函数

时间:2019-01-05 02:28:11

标签: typescript visual-studio-code

Command +单击(mac)当前确实会打开.js文件中使用的导入的类库。但是,它不适用于.ts文件。

示例:

exports = module.exports = functions.database.ref('store/storeId').onDelete((change, context) => {
    const storeId = change.val();

    return null;
});

如果我(使用 Command +单击)在功能onDelete上,则仅当它是 js生成的文件时,我才能打开类库而不是 ts文件

如何配置 VS代码,以便也可以从 .ts文件打开它?

0 个答案:

没有答案