feat: added VSCode Windows debugging entry

This commit is contained in:
Xiaohan-Tian
2026-05-14 18:03:58 -07:00
parent 64dda5bb01
commit 0e6e2736d0
2 changed files with 37 additions and 0 deletions
+23
View File
@@ -23,6 +23,29 @@
"endsPattern": "ready in .*ms"
}
}
},
{
"type": "npm",
"script": "dev",
"label": "npm: dev (Windows)",
"detail": "vite",
"isBackground": true,
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
},
"problemMatcher": {
"pattern": {
"regexp": "^.*$"
},
"background": {
"activeOnStart": true,
"beginsPattern": ".*",
"endsPattern": "ready in .*ms"
}
}
}
]
}