1
1
mirror of https://github.com/tweag/nickel.git synced 2024-10-05 23:57:09 +03:00
nickel/.vscode/tasks.json
2021-09-23 19:40:03 +03:00

50 lines
808 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
"group": "build",
"options": {
"cwd": "${workspaceFolder}/lsp/client-extension"
},
"presentation": {
"panel": "dedicated",
"reveal": "never"
},
"problemMatcher": [
"$tsc"
]
},
{
"type": "npm",
"script": "watch",
"isBackground": true,
"group": "build",
"options": {
"cwd": "${workspaceFolder}/lsp/client-extension"
},
"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"
]
}
]
}