We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 660f088 commit ea0225bCopy full SHA for ea0225b
.vscode/launch.json
@@ -15,7 +15,8 @@
15
"outFiles": [
16
"${workspaceFolder}/dist/**/*.js"
17
],
18
- "preLaunchTask": "${defaultBuildTask}"
+ "preLaunchTask": "watch",
19
+ "postDebugTask": "stop watch tasks"
20
}
21
]
22
.vscode/tasks.json
@@ -83,6 +83,19 @@
83
"npm: watch-tests"
84
85
"problemMatcher": []
86
+ },
87
+ {
88
+ "label": "stop watch tasks",
89
+ "type": "shell",
90
+ "command": "bash",
91
+ "args": [
92
+ "-lc",
93
+ "pkill -f \"node esbuild.js --watch\" >/dev/null 2>&1 || true; pkill -f \"vite\" >/dev/null 2>&1 || true"
94
+ ],
95
+ "problemMatcher": [],
96
+ "presentation": {
97
+ "reveal": "never"
98
+ }
99
100
101
0 commit comments