📌  相关文章
📜  Visual Studio Code 不会在 Python 断点调试时停止 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:55.066000             🧑  作者: Mango

代码示例1
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: Debug Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "stopOnEntry": true,
            "justMyCode": false
        },
    ]
}