Having a monorepo project using multiple Next.JS apps, each are using private packages containing TypeScript modules which are directly transpiled and bundled in these applications. Everything works like a charm without any tsc --watch required. As the application grows, we plan on extracting the API's of these projects into separate NestJS projects. However, because NestJS does not execute TypeScript, but transpiles first, then executes JavaScript code, importing these external TypeScript packages fails.
Are there future plans for NestJS to work like Next.JS and enable the same feature? Next.JS's modern approach (i.e., no requiring a dist folder at run-time) seems to be the right way to go.