build(projects): add VSCode debug config file

This commit is contained in:
Soybean 2023-01-15 11:00:00 +08:00
parent 458b7adb29
commit 0c12665fda
2 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View File

@ -22,6 +22,7 @@ stats.html
# Editor directories and files
.vscode/*
!.vscode/extensions.json
!.vscode/launch.json
!.vscode/settings.json
.idea
*.suo

12
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Vue debugger",
"url": "http://localhost:3200",
"webRoot": "${workspaceFolder}"
}
]
}