美文网首页
vscode 进行代码的调试

vscode 进行代码的调试

作者: 陆遥远 | 来源:发表于2018-05-29 14:07 被阅读0次

配置参数修改program

{
    // 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": [
        {
            "env": {
                "NODE_ENV": "test"
             },
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "program": "${workspaceFolder}/server/server.js"
            
        }
    ]
}

相关文章

网友评论

      本文标题:vscode 进行代码的调试

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