From e937073018d9cc055354bd176286bdc45b01b567 Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 3 Feb 2016 11:54:42 +0100 Subject: [PATCH] launch.json - remove warnings --- .vscode/launch.json | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7bbd57cfcbd..c19b55e55ce 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,19 +5,18 @@ "name": "Unit Tests", "type": "node", "request": "launch", - "program": "node_modules/mocha/bin/_mocha", + "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", "stopOnEntry": false, "args": [ "--timeout", "999999", "--colors" ], - "cwd": ".", - "runtimeExecutable": null, + "cwd": "${workspaceRoot}", "runtimeArgs": [], "env": {}, "sourceMaps": true, - "outDir": "out" + "outDir": "${workspaceRoot}/out" }, { "name": "Attach to Extension Host", @@ -25,7 +24,7 @@ "request": "attach", "port": 5870, "sourceMaps": true, - "outDir": "out" + "outDir": "${workspaceRoot}/out" }, { "name": "VSCode API Tests", @@ -39,7 +38,7 @@ ], "stopOnEntry": false, "sourceMaps": true, - "outDir": "out" + "outDir": "${workspaceRoot}/out" }, { "name": "Attach to VSCode", @@ -47,7 +46,7 @@ "request": "attach", "port": 9222, "sourceMaps": true, - "outDir": "out" + "outDir": "${workspaceRoot}/out" }, { "name": "Convert css-schema to browser.js", -- GitLab