matrix-media-expanded/.vscode/tasks.json
Sridhar Ratnakumar c63f147a29
Update tasks.json
2021-05-31 19:34:35 -04:00

23 lines
679 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Ghcid",
"type": "shell",
// You may also use bin/run-via-tmux if you have tmux
// This is useful if you often see ghost ghcid left behind by VSCode reloads.
"command": "bin/run",
"args": [],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"runOptions": {
// "runOn": "folderOpen"
}
}
]
}