mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-03 10:13:17 +08:00
chore: move launch configuration to workspace file (@fehmer) (#5502)
This commit is contained in:
parent
d733996b09
commit
6b352a5e4f
3 changed files with 22 additions and 21 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -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
20
.vscode/launch.json
vendored
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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": []
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue