mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-25 16:15:26 +08:00
impr(dev): add debug launch configurations for vscode (@fehmer) (#5501)
!nuf
This commit is contained in:
parent
f4f83cf489
commit
b5f1225df0
2 changed files with 21 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -72,6 +72,7 @@ node_modules_bak/
|
|||
.vscode/*
|
||||
.vscode/.*
|
||||
!.vscode/extensions.json
|
||||
!.vscode/launch.json
|
||||
*.code-workspace
|
||||
!monkeytype.code-workspace
|
||||
|
||||
|
|
20
.vscode/launch.json
vendored
Normal file
20
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "node",
|
||||
"request": "attach",
|
||||
"name": "Debug attach backend",
|
||||
"port": 9229,
|
||||
"skipFiles": ["<node_internals>/**"]
|
||||
},
|
||||
{
|
||||
"name": "Vite Debugger",
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"port": 9222,
|
||||
"url": "http://localhost:3000",
|
||||
"webRoot": "${workspaceFolder}/frontend/src"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue