I am working on a node project called A that has the following dependencies:
A depends on B (^1.2.0)
A depends on C (^1.0.0)
C depends on B (^1.0.0)
The issue arises from the dependency on B. Strangely, when I use rollup without the watch flag (-w
), everything works smoothly. However, once I include the watch flag (-w
), rollup starts behaving erratically and throws this error message:
Error: Transform dependency node_modules/B/node_modules/C/index.ts does not exist.
Am I overlooking something here? :( Thank you for any help!