CliSite/.vscode/tasks.json

16 lines
314 B
JSON

//add typescript compile task
{
"version": "2.0.0",
"tasks": [
{
"label": "Compile TypeScript",
"type": "shell",
"command": "npx tsc",
"group": "build",
"presentation": {
"reveal": "always"
}
}
]
}