From f511ac797de68895cbc295e7fd1771fc2e068da6 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Thu, 18 Feb 2016 22:54:45 -0800 Subject: [PATCH] Add "launch"-type config to launch.json --- .vscode/launch.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c19b55e55ce..4c02db01c66 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -45,8 +45,14 @@ "type": "chrome", "request": "attach", "port": 9222, - "sourceMaps": true, - "outDir": "${workspaceRoot}/out" + "sourceMaps": true + }, + { + "name": "Launch VSCode", + "type": "chrome", + "request": "launch", + "runtimeExecutable": "${workspaceRoot}/scripts/code.bat", + "sourceMaps": true }, { "name": "Convert css-schema to browser.js", -- GitLab