Thanks for your explanation!
This approach creates a new profile per workspace I think.
You could use 'userDataDir' for a steady profile across workspace:
{
"configurations": [
{
"name": "ListViewCommandSet debug EDGE",
"type": "msedge",
"request": "launch",
"url": "{URL}",
"webRoot": "",
//...
"userDataDir": "your-profile-name"
]
},
//....
]
}
This way the profile is created in a VSCode folder common for all projects:
'C:\Users\<user>\AppData\Local\Programs\Microsoft VS Code\<your-profile-name>\Default'
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Thanks for your explanation!
This approach creates a new profile per workspace I think.
You could use 'userDataDir' for a steady profile across workspace: