Hi, thanks for sharing this issue.
Broadly, you have two options here. You can either disable typescript compilation by
adding a condition to your project file, or you can make sure it has the dependencies necessary to run without errors inside the NCrunch workspace.
The root issue is that your typescript build step requires certain files to be present on paths relative to the solution being compiled. These files haven't been auto detected by NCrunch, so they don't get copied into its workspace when it builds your project. You'll need to specify the files using the
additional files to include setting so then NCrunch is aware of them and can copy them over. Probably it's best to just include the entire node_modules directory. Hopefully that will resolve the issue and you'll be able to have typescript compilation results showing up in the NCrunch Tests Window.