add vscode launch file

This commit is contained in:
seb
2025-07-02 13:51:55 +02:00
parent b4b334609a
commit f1860e0c8b
2 changed files with 15 additions and 1 deletions

1
.gitignore vendored
View File

@@ -45,7 +45,6 @@ yarn-debug.log*
yarn-error.log* yarn-error.log*
# Editor directories and files # Editor directories and files
.vscode
.idea .idea
*.suo *.suo
*.ntvs* *.ntvs*

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

@@ -0,0 +1,15 @@
{
// Launch configuration for starting the project in VSCode
// This will install dependencies before starting the dev server
"version": "0.2.0",
"configurations": [
{
"type": "node-terminal",
"name": "Start with API propxy to seedheads.de (Install Deps)",
"request": "launch",
"command": "npm run start:seedheads",
"preLaunchTask": "npm: install",
"cwd": "${workspaceFolder}"
}
]
}