diff --git a/.vscode/launch.json b/.vscode/launch.json index 7bbd57cfcbd3e86ad7eccc378cf4b976f9c95552..c19b55e55ce36a38b8db7d12ac8723599446b28f 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",