16 lines
285 B
JSON
16 lines
285 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Compile VSCode extension",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": ["run", "compile"],
|
|
"problemMatcher": "$tsc",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/vscode-ext"
|
|
}
|
|
}
|
|
]
|
|
}
|