I am experiencing difficulties deploying basic Typescript functions to Azure. Despite a successful deployment using VS code and confirmation in the Output window, I cannot see any functions listed in the Azure Portal under the Function App:
https://i.stack.imgur.com/0Q8jv.png
Additionally, there are no functions showing up in the Azure tab within VS code:
https://i.stack.imgur.com/dHTRL.png
My project structure aligns with the recommendations outlined in the Typescript developer guide:
<project_root>/
| - .vscode/
| - dist/
| | - src/
| | | - functions/
| | | | - myFirstFunction.js
| | | | - myFirstFunction.js.map
| | | | - mySecondFunction.js
| | | | - mySecondFunction.js.map
| - node_modules/
| - src/
| | - functions/
| | | - myFirstFunction.ts
| | | - mySecondFunction.ts
| - .funcignore
| - host.json
| - local.settings.json
| - package.json
| - tsconfig.json
I have verified that AzureWebJobsFeatureFlags
is configured as EnableWorkerIndexing
, following a suggestion from another post on SO. The Typescript files are successfully compiled during deployment and can be found under dist > src > functions.
In an attempt to troubleshoot, I also deployed using the Core Tools. Once again, the deployment was deemed successful with the upload of the zip package, but no functions are visible.
What could be causing this issue?