I saw how start.json for Visual Studio Code has access to "$ {workspaceRoot}. Does it also have access to other shared variables? I would like to have access to the user's current appdata folder so that I can:
"program": "${appData}\\Roaming\\npm\\node_modules\\gulp\\bin\\gulp.js"
instead of hard coding:
"program": "C:\\Users\\jdoe\\AppData\\Roaming\\npm\\node_modules\\gulp\\bin\\gulp.js"
source
share