coref / .vscode /tasks.json
julien-c's picture
julien-c HF Staff
Hardcode static outputs to get rid of API
83140f2 verified
raw
history blame contribute delete
497 Bytes
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"command": "tsc",
"args": [
"-w",
"-p",
"."
],
"isBackground": true,
"problemMatcher": "$tsc-watch",
"tasks": [
{
"label": "tsc",
"type": "shell",
"command": "tsc",
"args": [
"-w",
"-p",
"."
],
"isBackground": true,
"problemMatcher": "$tsc-watch",
"group": {
"_id": "build",
"isDefault": false
}
}
]
}