美文网首页
vs code 文件debugger

vs code 文件debugger

作者: Allan要做活神仙 | 来源:发表于2019-06-18 14:00 被阅读0次

需要debugger什么文件就在
.vscode/launch.json/Launch Targets下配置:

{
    // 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": [
        
        {
            "type": "node",
            "request": "launch",
            "name": "ImportAndroidDataJob",
            "program": "${workspaceFolder}/jobs/ImportAndroidDataJob.js"
        }
    ]
}

相关文章

网友评论

      本文标题:vs code 文件debugger

      本文链接:https://www.haomeiwen.com/subject/vjkfqctx.html