34 lines
854 B
JSON
34 lines
854 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Wails: Production yellowjacket",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "exec",
|
|
"program": "${workspaceFolder}/build/bin/yellowjacket",
|
|
"preLaunchTask": "build",
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Wails: Debug yellowjacket",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "exec",
|
|
"program": "${workspaceFolder}/build/bin/yellowjacket",
|
|
"preLaunchTask": "build debug",
|
|
"cwd": "${workspaceFolder}",
|
|
"outputMode": "remote",
|
|
},
|
|
{
|
|
"name": "Wails: Dev yellowjacket",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "exec",
|
|
"program": "${workspaceFolder}/build/bin/yellowjacket",
|
|
"preLaunchTask": "build dev",
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
}
|