I have a basic frontend project, and within an api subdirectory there are three different PHP mini‑projects. I would like to be able to specify a per‑project workingPath in the settings.json of a single VS Code workspace, something like this:
{
"composer.workingPath": {
"./../api/calculator": "./../api/calculator",
"./../api/captcha": "./../api/captcha",
},
}
or just:
{
"composer.workingPath": [
"./../api/calculator",
"./../api/captcha",
],
}
Is it possible?