调试用的launch.json文件,要求是移动到其他文件夹后不需要重新调整代码
时间: 2024-03-13 09:46:53 浏览: 92
您可以参考以下的示例 launch.json 文件,将其保存在您的项目根目录下的 .vscode 文件夹中。这个配置文件中包含了一些常用的调试配置,您可以根据自己的需要进行修改。
```
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: 当前文件",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Python: 模块",
"type": "python",
"request": "launch",
"module": "enter.your.module.name.here",
"console": "integratedTerminal"
},
{
"name": "Python: 远程 Attach",
"type": "python",
"request": "attach",
"port": 3000,
"host": "localhost",
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app"
}
]
}
]
}
```
请注意,这个配置文件中的程序路径(program)和模块名(module)都是使用了相对路径,所以不需要重新调整代码。但是如果您的代码有其他依赖文件,您可能需要手动添加路径映射(pathMappings)来确保在其他文件夹中运行时能够正确找到它们。
希望这个答案能够帮到您,如果您有其他问题,请随时提问。
阅读全文