| 12345678910111213141516171819202122232425262728 | {  "version": "0.1.0",  "command": "go",  "isShellCommand": true,  "showOutput": "always",  "tasks": [    {      "taskName": "build",      "args": ["v2ray.com/core/..."],      "isBuildCommand": true,      "problemMatcher": {        "owner": "go",        "fileLocation": ["relative", "${workspaceRoot}"],        "pattern": {          "regexp": "^([^:]+\\.go):(\\d+):(.*)",          "file": 1,          "line": 2,          "message": 3        }      }    },    {      "taskName": "test",      "args": ["v2ray.com/core/..."],      "isBuildCommand": false    }  ]}
 |