tooldown/.vscode/launch.json
2025-01-22 10:22:58 +08:00

16 lines
421 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Program with External cmd",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}",
"env": {}, // 可以在这里设置环境变量
"args": [], // 传递给程序的参数
"console": "externalTerminal"
}
]
}