From bdb936ac6240e2b2cd114a87f716738671ef5192 Mon Sep 17 00:00:00 2001 From: zinzesa <128264169+zinzesa@users.noreply.github.com> Date: Wed, 6 Sep 2023 03:57:56 +0000 Subject: [PATCH 1/2] Initial commit From e5724d55c9d2490266d327f4011f390d802954a6 Mon Sep 17 00:00:00 2001 From: zinzesa <128264169+zinzesa@users.noreply.github.com> Date: Wed, 6 Sep 2023 03:57:57 +0000 Subject: [PATCH 2/2] Pending changes exported from your codespace --- .vscode/launch.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .vscode/launch.json 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