vscode launch.json

有时新的服务器进行调试时,需要设置调试的launch.json的结果


然后就可以打开一个launch.json
vscode launch.json_第1张图片
其内容如下

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: 当前文件",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "justMyCode": false
        }
    ]
}

你可能感兴趣的:(vscode,json,ide)