Skip to content

Commit 6f0afc6

Browse files
committed
chore: add tasks.json
1 parent 9222608 commit 6f0afc6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.vscode/tasks.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "watch",
7+
"path": "server/",
8+
"problemMatcher": ["$tsc-watch"],
9+
"group": "build",
10+
"label": "Watch server TypeScript",
11+
"detail": "../node_modules/.bin/tsc -p . -w",
12+
"isBackground": true,
13+
"runOptions": {
14+
"runOn": "folderOpen",
15+
},
16+
},
17+
],
18+
}

0 commit comments

Comments
 (0)