尝试从vscode内启动Typescript文件失败

时间:2019-04-15 16:28:16

标签: typescript visual-studio-code vscode-debugger

launch.json 中,我具有以下配置,可以从 vscode

中启动当前选择的 typescript文件
npm install jquery popper.js
npm install boostarp

如果我使用此配置,但出现类似错误

    {
        "name": "Current TS File",
        "type": "node",
        "request": "launch",
        "args": ["${relativeFile}"],
        "runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
        "sourceMaps": true,
        "cwd": "${workspaceRoot}",
        "protocol": "inspector"
    }

关于哪里出问题的任何主意吗?

0 个答案:

没有答案