Replace workspaceRoot with workspaceFolder. (#20306)

workspaceRoot has been deprecated as per https://code.visualstudio.com/docs/editor/variables-reference#_why-isnt-workspaceroot-documented
This commit is contained in:
Mike Pelley 2019-09-24 13:49:04 -04:00 committed by John Kleinschmidt
parent 597a8b5ec7
commit 7f0ec3091e

View file

@ -17,10 +17,10 @@ $ code electron-quick-start
"name": "Debug Main Process", "name": "Debug Main Process",
"type": "node", "type": "node",
"request": "launch", "request": "launch",
"cwd": "${workspaceRoot}", "cwd": "${workspaceFolder}",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"windows": { "windows": {
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
}, },
"args" : ["."], "args" : ["."],
"outputCapture": "std" "outputCapture": "std"