37 lines
811 B
JSON
37 lines
811 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"useApiV1": false,
|
|
"dlvLoadConfig": {
|
|
"followPointers": true,
|
|
"maxVariableRecurse": 1,
|
|
"maxStringLen": 3000,
|
|
"maxArrayValues": 100,
|
|
"maxStructFields": -1
|
|
},
|
|
"name": "Che Operator",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}/main.go",
|
|
"envFile": "/tmp/che-operator-dev/vscode.env",
|
|
"cwd": "${workspaceFolder}",
|
|
},
|
|
{
|
|
"type": "bashdb",
|
|
"request": "launch",
|
|
"name": "Bash-Debug",
|
|
"cwd": "${workspaceFolder}",
|
|
"program": "${file}",
|
|
"args": []
|
|
},
|
|
{
|
|
"name": "Launch Main *.go File",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"program": "${file}"
|
|
}
|
|
]
|
|
}
|