launch.json配置问题
时间: 2023-08-30 18:11:26 浏览: 299
launch.json 是用来配置调试器的文件,你需要根据具体的开发环境和项目需求进行相应的配置。以下是一些常见的配置:
1. 配置 Node.js 应用程序:
```
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/app.js",
"env": {
"PORT": "3000"
}
}
]
}
```
2. 配置 React 应用程序:
```
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
}
]
}
```
3. 配置 Python 应用程序:
```
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}
```
以上代码仅供参考,具体的配置需要根据你的项目需求和开发环境进行相应的修改。你可以在 VS Code 中按下 F5 键打开 launch.json 文件,并进行编辑和保存。
阅读全文