1
1
mirror of https://github.com/tweag/nickel.git synced 2024-10-07 00:30:47 +03:00
nickel/.vscode/tasks.json

42 lines
648 B
JSON
Raw Normal View History

2021-09-23 14:04:43 +03:00
{
"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",
2021-09-23 17:21:45 +03:00
"options": {"cwd": "${workspaceFolder}/lsp/nls"},
"args": [],
2021-09-23 14:04:43 +03:00
"group": "build",
"problemMatcher": [
"$rustc"
]
}
]
}