diff --git a/.gitignore b/.gitignore index b86cf94..83c1ce0 100644 --- a/.gitignore +++ b/.gitignore @@ -45,7 +45,6 @@ yarn-debug.log* yarn-error.log* # Editor directories and files -.vscode .idea *.suo *.ntvs* diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..7c718bb --- /dev/null +++ b/.vscode/launch.json @@ -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}" + } + ] +}