调试我的打字稿文件时出现错误:->附加了调试器。等待调试器断开连接

时间:2018-09-14 13:13:34

标签: node.js typescript debugging visual-studio-code vscode-debugger

我在线阅读了许多文章,为此我尝试了各种在线方式,但是到目前为止,对我来说都没有任何效果。 我已经重新安装了node,vs代码,再次重新安装了npm,但是什么也没用。 我正在使用->
VSCode版本:1.27.2
操作系统版本:Windows 10 Pro 64位操作系统,基于x64的处理器
节点版本:v8.11.3

我的launch.json如下:-

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch",
            "type": "node",
            "request": "launch",
            "program": "${workspaceRoot}/dist/LeonardoGrader.js",
            "stopOnEntry": false,
            "args": [],
            "cwd": "${workspaceRoot}",
            "runtimeExecutable": null,
            "runtimeArgs": [
            "--nolazy"
            ],
            "env": {
            "NODE_ENV": "development"
            },
            "sourceMaps": true,
            "outFiles": ["${workspaceRoot}/dist/**/*.js"]
            }
    ]
}

任何帮助将不胜感激。谢谢。

0 个答案:

没有答案