Yuki Hayashi
Yuki Hayashi
I am using NestJS and have considered replacing it with TransactionClient for the inability to share transactions between services. Doing this would eliminate the need to pass PrismaClient as a...
@williamdclt I encountered the same issue, and it was caused by the --strip-leading-paths option being enabled by default. https://swc.rs/docs/usage/cli#–strip-leading-paths The problem was fixed by changing it as follows: nest-cli.json ```ts...
Additional Information: The following needs to be added: ```json "builder": { "type": "swc", "options": { "stripLeadingPaths": false, "includeDotfiles": true } } ``` With this change, it will work correctly even...