I have seen how launch.json for Visual Studio Code has access to ${workspaceFolder}. Does it also have access to other common variables? I would like to have access to the current user's AppData folder so I can do:
"program": "${appData}\\Roaming\\npm\\node_modules\\gulp\\bin\\gulp.js"
instead of hard-coding it as:
"program": "C:\\Users\\jdoe\\AppData\\Roaming\\npm\\node_modules\\gulp\\bin\\gulp.js"