chore: move launch configuration to workspace file (@fehmer) (#5502)

This commit is contained in:
Christian Fehmer 2024-06-17 17:52:14 +02:00 committed by GitHub
parent d733996b09
commit 6b352a5e4f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 22 additions and 21 deletions

1
.gitignore vendored
View file

@ -72,7 +72,6 @@ node_modules_bak/
.vscode/*
.vscode/.*
!.vscode/extensions.json
!.vscode/launch.json
*.code-workspace
!monkeytype.code-workspace

20
.vscode/launch.json vendored
View file

@ -1,20 +0,0 @@
{
"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"
}
]
}

View file

@ -38,5 +38,27 @@
"editor.formatOnSaveMode": "file",
"editor.formatOnSave": true,
"testing.openTesting": "neverOpen"
},
"launch": {
"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"
}
],
"compounds": []
}
}