Is there a way to see the module resolution trace logs like when you run tsc --traceResolution but through this plugin? I'm running into a strange issue where my dev and prod builds compile fine, but my test build (using karma and karma-webpack) fails to compile withTS2307: Cannot find module 'moment'. All builds are using the same tsconfig file, and when I run tsc --traceResolution I can see typescript properly resolve the moment module, so I'm having a difficult time debugging why it is failing to compile only when being run through karma and karma-webpack.
If I could turn on the traceResolution flag and get those logs while running that build, I might get a little better insight.
Is there a way to see the module resolution trace logs like when you run
tsc --traceResolutionbut through this plugin? I'm running into a strange issue where my dev and prod builds compile fine, but my test build (using karma and karma-webpack) fails to compile withTS2307: Cannot find module 'moment'.All builds are using the same tsconfig file, and when I runtsc --traceResolutionI can see typescript properly resolve the moment module, so I'm having a difficult time debugging why it is failing to compile only when being run through karma and karma-webpack.If I could turn on the traceResolution flag and get those logs while running that build, I might get a little better insight.