add vscode launch file
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -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
15
.vscode/launch.json
vendored
Normal 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}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user