Files
vscode-extension-samples/jupyter-server-provider-sample/.vscode/tasks.json
2023-09-21 12:21:12 +10:00

14 lines
248 B
JSON

// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
"problemMatcher": ["$tsc"],
"group": "build"
}
]
}