I am trying to deploy several functions to Digital Ocean’s app platform. The configuration has been a bit of a nightmare docs for typescript are a bit sparse and the deployment logs aren’t very helpful.
However does anyone have an examples of how I might include a root level lib/
folder that the packages can share? I am considering just having the lib deploy a private npm package and installing it, but that seems ridiculous with them sharing a project.
packages/billing/events
packages/*/*
lib/
If I reference lib/ from the package then ts complains about my rootDir, but if I set rootDir lower then my dist folder is going to be in the wrong spot?
Any recommendations or templates / samples?