diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..4c466db --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,31 @@ +{ + // Verwendet IntelliSense zum Ermitteln möglicher Attribute. + // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen. + // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Attach to Chrome", + "port": 9222, + "request": "attach", + "type": "chrome", + "webRoot": "${workspaceFolder}" + }, + { + "name": "Launch Chrome", + "request": "launch", + "type": "chrome", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + }, + { + "type": "node", + "request": "launch", + "name": "Programm starten", + "skipFiles": [ + "/**" + ], + "program": "${file}" + } + ] +} \ No newline at end of file