I just upgraded Directus, performed a new npm install, ran npx init boostrap. Everything seemed fine, I just saw a few extension issues in the traces, nothing else.
Starting Directus from IIS now throws a Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: Package subpath './server' is not defined by "exports" error message.
The index.js file called by IIS includes:
trustServerCertificate: true,
startServer();```
So I suppose this is due to the `require('directus/server')` now being an ES module?
What's the appropriate method to start Directus now without docker or docker-compose? If not by the above, how can you add Elastic APM or NewRelic in case it is required? Would have done so by adding `require('newrelic');` above.