From fd1a22b5c643c08ba0cd70d6b2e328021e8bff99 Mon Sep 17 00:00:00 2001 From: isidor Date: Mon, 16 Nov 2015 14:34:09 +0100 Subject: [PATCH] launch.json: add 'Attach to VSCode' configuration. --- .vscode/launch.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 4072eace9fe..96631e7be0d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -40,6 +40,14 @@ "stopOnEntry": false, "sourceMaps": true, "outDir": "out" + }, + { + "name": "Attach to VSCode", + "type": "chrome", + "request": "attach", + "port": 9222, + "sourceMaps": true, + "outDir": "out" } ] } \ No newline at end of file