From 0cdac9a8bf55c3aeab1a471bcfc16546f075fe4b Mon Sep 17 00:00:00 2001 From: Valetin Berger Date: Wed, 18 Nov 2020 10:45:38 +0100 Subject: [PATCH] launch source windows added --- .vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 3c2512e021..dc586212f2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -18,6 +18,20 @@ "url": "${workspaceFolder}/src/index.html", "webRoot": "${workspaceFolder}/src" }, + { + "name": "Launch Source Windows", + "type": "firefox", + "request": "launch", + "reAttach": false, + "reloadOnChange": { + "watch": ["${workspaceFolder}\\src\\**\\*.js", "${workspaceFolder}\\src\\**\\*.html"], + "ignore": "**\\node_modules\\**" + }, + "internalConsoleOptions": "openOnSessionStart", + "firefoxArgs": ["-devtools"], + "url": "${workspaceFolder}\\src\\index.html", + "webRoot": "${workspaceFolder}\\src" + }, { "name": "Launch Test", "type": "firefox",