Files
vscode-extension-samples/jupyter-kernel-execution-sample/.vscode/tasks.json
2023-11-27 14:56:37 +11: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"
}
]
}