I have a working node-based Azure Functions project that I am in the process of restructuring in order to have the Functions project be in it's own sub-folder (instead of having everything in the root directory). I'm trying to work my way toward a monorepo approach where I would (eventually) have the front-end of the app also in this same repo.
I have part of it working (more on that in a minute). But I need help getting the VS Code project to run/debug now that I have the Functions app in its own sub-folder.
Before I changed the folder structure I could debug the functions both locally in VS Code and once deployed to Azure via GitHub workflow action.
After placing the Functions app contents in their own sub-folder, I edited the Github workflow yaml file to specify the new sub-directory (by setting the AZURE_FUNCTIONAPP_PACKAGE_PATH). This has enabled me to push code to GitHub and have the normal trigger fire so that the code is built and deployed to Azure. So deploying to Azure works with my new sub-folder. And I can access everything in the Azure portal as I could before the folder restructure (the portal is not confused by the new folder structure).
Now my problem is getting VS Code to understand how to run my functions app locally.
I think there's some setting I need to change in one of the files in the .vscode directory since those seem to control the run cycle. But I can't figure out which property to edit. Thanks for your help!

