I have a monorepo(not Nest.js monorepo) with multiple apps and packages. I use pnpm and turbo.
I have trouble with using shared package from Nest.js app
monorepo structure
apps
|-- api
packages
|-- shared
Now I'd like to use types from packages/shared and I got into trouble with transpilation.
I am getting error like unexpected token 'export'
And I would like to avoid the internal package to have it's own build/compliation process and want Nest.js to process it. Is this possible?
