matrix-media-expanded/.vscode/tasks.json

27 lines
No EOL
713 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",
// This is useful if you often see ghost ghcid left behind by VSCode reloads.
"command": "nix",
"args": [
"develop",
"-c",
",",
"run"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"runOptions": {
// "runOn": "folderOpen"
}
}
]
}