After downloading the Aurelia VS2015 skeleton for typescript, I encountered an issue trying to run the Aurelia Navigation app in IIS Express. One modification that was made to the skeleton was adding "webroot": "wwwroot" to the top level of project.json.
The problem arises when the app attempts to load "dist/main.js", which presents two main challenges. Firstly, there is no "dist" directory under "wwwroot" where it should be located for IIS Express. Additionally, there is no "dist" directory anywhere else in the project. The type script files are being compiled into the "src" directory, which sits alongside the wwwroot directory and contains .ts and .map files that do not belong under wwwroot.
If anyone has insight on how to resolve this issue or can point me in the direction of resources that may help, I would greatly appreciate it.
Thank you!