2021-05-31 23:19:51 +00:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2021-05-31 23:34:35 +00:00
|
|
|
"label": "Ghcid",
|
2021-05-31 23:19:51 +00:00
|
|
|
"type": "shell",
|
|
|
|
// This is useful if you often see ghost ghcid left behind by VSCode reloads.
|
2022-12-17 17:29:11 +00:00
|
|
|
"command": "nix",
|
|
|
|
"args": [
|
|
|
|
"develop",
|
|
|
|
"-c",
|
|
|
|
",",
|
|
|
|
"run"
|
|
|
|
],
|
2021-05-31 23:19:51 +00:00
|
|
|
"problemMatcher": [],
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"runOptions": {
|
|
|
|
// "runOn": "folderOpen"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2022-12-17 17:29:11 +00:00
|
|
|
}
|