I've read thru the doc and created a new azure function with the VS Code extension just using the boilerplate code it spits out.
Then I set this up locally in local.settings.json (I'm on Windows)
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "",
"FUNCTIONS_WORKER_RUNTIME": "node",
"FUNCTIONS_EXTENSION_VERSION": "~4",
"WEBSITE_NODE_DEFAULT_VERSION": "~16"
}
}
But I still get that node version is an incompatible error.

