1
1
mirror of https://github.com/srid/ema.git synced 2024-12-02 09:15:10 +03:00
ema/.vscode/tasks.json
Sridhar Ratnakumar d91fe487a6 Add script to run via tmux
Because ghcid reloads leaves ghost threads sometime, when reloading VSCode.

And disable launch-when-open in VSCode for that reason.
2021-04-21 20:43:03 -04:00

21 lines
535 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Ema Example Server",
"type": "shell",
"command": "bin/run",
"args": [],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"runOptions": {
// "runOn": "folderOpen"
}
}
]
}