1
1
mirror of https://github.com/tweag/nickel.git synced 2024-10-06 16:18:08 +03:00
nickel/.vscode/tasks.json
2021-09-23 17:21:45 +03:00

42 lines
648 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
"group": "build",
"presentation": {
"panel": "dedicated",
"reveal": "never"
},
"problemMatcher": [
"$tsc"
]
},
{
"type": "npm",
"script": "watch",
"isBackground": true,
"group":"build",
"presentation": {
"panel": "dedicated",
"reveal": "never"
},
"problemMatcher": [
"$tsc-watch"
]
},
{
"label": "make server",
"type": "cargo",
"command": "build",
"options": {"cwd": "${workspaceFolder}/lsp/nls"},
"args": [],
"group": "build",
"problemMatcher": [
"$rustc"
]
}
]
}