diff options
| author | christine betts <[email protected]> | 2025-07-14 15:34:44 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-14 15:34:44 +0000 |
| commit | e9d680e8a45b18152042214891132eec60e4a09b (patch) | |
| tree | f745dd75afd81079369b4234ecbf34f1adad396e /packages/vscode-ide-companion/.vscode/tasks.json | |
| parent | 64f1d80b26af25708356e8a743ea7fab1496c7e9 (diff) | |
Introduce VSCode companion extension (#3917)
Diffstat (limited to 'packages/vscode-ide-companion/.vscode/tasks.json')
| -rw-r--r-- | packages/vscode-ide-companion/.vscode/tasks.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/vscode-ide-companion/.vscode/tasks.json b/packages/vscode-ide-companion/.vscode/tasks.json new file mode 100644 index 00000000..34edf970 --- /dev/null +++ b/packages/vscode-ide-companion/.vscode/tasks.json @@ -0,0 +1,18 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "watch", + "problemMatcher": "$tsc-watch", + "isBackground": true, + "presentation": { + "reveal": "never" + }, + "group": { + "kind": "build", + "isDefault": true + } + } + ] +} |
