Skip to content

Commit c9dea19

Browse files
committed
Change relative paths from launch.json to absolute.
1 parent 9e6d8fb commit c9dea19

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.vscode/launch.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
{
55
"name": "launch as server",
66
"type": "node",
7-
"program": "./out/webkit/webkitDebug.js",
8-
"runtimeArgs": ["--harmony"],
9-
"stopOnEntry": false,
7+
"program": "${workspaceRoot}/out/webkit/webKitDebug.js",
8+
"runtimeArgs": ["--harmony", "--nolazy"],
9+
"stopOnEntry": true,
1010
"args": [ "--server=4712" ],
1111
"sourceMaps": true,
12-
"outDir": "out"
12+
"outDir": "${workspaceRoot}/out"
1313
},
1414
{
1515
"name": "launch in extension host",
@@ -22,12 +22,12 @@
2222
],
2323
"stopOnEntry": false,
2424
"sourceMaps": true,
25-
"outDir": "out"
25+
"outDir": "${workspaceRoot}/out"
2626
},
2727
{
2828
"name": "test",
2929
"type": "node",
30-
"program": "./node_modules/gulp/bin/gulp.js",
30+
"program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js",
3131
"stopOnEntry": false,
3232
"args": [ "test" ],
3333
"sourceMaps": true,

0 commit comments

Comments
 (0)