Browse Source

${workspaceRoot} -> ${workspaceFolder} (#519)

main
Nguyen Long Nhat 6 years ago
committed by Eric Amodio
parent
commit
6bf026f21b
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      .vscode/launch.json

+ 4
- 4
.vscode/launch.json View File

@ -7,11 +7,11 @@
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
"env": {
"VSCODE_DEBUGGING_EXTENSION": "gitlens"
},
"outFiles": ["${workspaceRoot}/dist/**/*.js"],
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"skipFiles": ["<node_internals>/**/*.js", "**/node_modules/**/*.js", "**/extensions/**/*.js"],
"smartStep": true,
"sourceMaps": true
@ -21,11 +21,11 @@
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"env": {
"VSCODE_DEBUGGING_EXTENSION": "gitlens"
},
"outFiles": ["${workspaceRoot}/dist/**/*.js"],
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"skipFiles": ["<node_internals>/**/*.js", "**/node_modules/**/*.js", "**/extensions/**/*.js"],
"smartStep": true,
"sourceMaps": true,

Loading…
Cancel
Save