ShadowEditor/.vscode/launch.json
2020-05-21 21:18:22 +08:00

36 lines
1.0 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Server",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/server/main.go",
"env": {},
"cwd": "${workspaceFolder}/build",
"args": [
"serve",
"--config",
"${workspaceFolder}/server/config-dev.toml"
]
},
{
"name": "Launch File",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${file}"
},
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${fileDirname}"
}
]
}