Getting acquainted with ASP.NET core. Added a single test but the main project won't build in NCrunch.
Code:
NCrunch: If you are experiencing problems in getting this project to build, have a look at http://www.ncrunch.net/documentation/troubleshooting_project-build-issues
app\js\app.ts (8, 20): Build:Cannot find module 'mithril'.
app\js\components\page\nav-bar.test.ts (6, 1): Build:Cannot find name 'test'.
app\js\components\page\nav-bar.ts (1, 20): Build:Cannot find module 'mithril'.
app\js\components\page\page-footer.test.ts (6, 1): Build:Cannot find name 'test'.
app\js\components\page\page-footer.ts (1, 20): Build:Cannot find module 'mithril'.
app\js\components\page\page-header.test.ts (6, 1): Build:Cannot find name 'test'.
app\js\components\page\page-header.ts (1, 20): Build:Cannot find module 'mithril'.
app\js\components\status\loading.test.ts (6, 1): Build:Cannot find name 'test'.
app\js\components\status\loading.ts (1, 20): Build:Cannot find module 'mithril'.
app\js\components\widgets\grid.test.ts (6, 1): Build:Cannot find name 'test'.
app\js\components\widgets\grid.ts (1, 20): Build:Cannot find module 'mithril'.
app\js\pages\about.test.ts (6, 1): Build:Cannot find name 'test'.
app\js\pages\about.ts (1, 20): Build:Cannot find module 'mithril'.
app\js\pages\about.ts (16, 11): Build:Parameter 'rs' implicitly has an 'any' type.
app\js\pages\about.ts (17, 12): Build:Parameter 'rj' implicitly has an 'any' type.
app\js\pages\home.test.ts (6, 1): Build:Cannot find name 'test'.
etc....
I've excluded *.ts files in the NCrunch config but it still seems to want to build them.
The project is at
https://github.com/mike-ward/SampleCore
Clone it, install Parcel (npm install -g parcel-bundler) and then run
in the root to get things set up. Then open in VS2017 and enable NCrunch.