You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Launching will use my main VS Code settings and extension, while I explicitly told through "args" not to do so. It does work tho via command line code --user-data-dir=tmp/data --extensions-dir=tmp/ext testProject. While that, I noticed that with preLaunchTask it will never open.
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensions-dir=${workspaceFolder}/tmp/ext", // does not work"--user-data-dir=${workspaceFolder}/tmp/data", // does not work"--enable-proposed-api=muuvmuuv.vscode-sundial",
"${workspaceFolder}/testProject"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
}
]
}