Skip to content

Commit 8cede3a

Browse files
committed
package.json: use ${workspaceRoot}
At the moment we magically append the workspace root to some properties of the launch.json on the vscode side. This will go away in the future since it is clunky. Thus we want to educate users to use the ${workspaceRoot} variable for all paths, since we will no longer support relative paths in the future.
1 parent f4b3eee commit 8cede3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"name": "PowerShell",
101101
"type": "PowerShell",
102102
"request": "launch",
103-
"program": "SET_SCRIPT_FILE_PATH_HERE.ps1"
103+
"program": "${workspaceRoot}/SET_SCRIPT_FILE_PATH_HERE.ps1"
104104
}
105105
]
106106
}

0 commit comments

Comments
 (0)