feat(config): add launch configuration for debugging

This commit is contained in:
buzz-lightsnack-2007 2025-04-21 18:32:11 +08:00
parent c022f33310
commit 6c243e0f5d

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node-terminal",
"name": "Run Script: debug",
"request": "launch",
"command": "npm run debug",
"cwd": "${workspaceFolder}"
}
]
}