mirror of
https://github.com/srid/ema.git
synced 2024-12-02 09:15:10 +03:00
d91fe487a6
Because ghcid reloads leaves ghost threads sometime, when reloading VSCode. And disable launch-when-open in VSCode for that reason.
21 lines
535 B
JSON
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"
|
|
}
|
|
}
|
|
]
|
|
} |