In my company, there's a ASP.NET WebApp that uses ASP.NET MVC Bundles and by that I mean this.
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
// Code removed for clarity.
BundleTable.EnableOptimizations = true;
}
When I'm working on the app, and I change a piece of typescript, I need to stop the application and start it again so MVC will compile TS and turn it into JS
My question is, is there anyway I can turn TS into JS and refresh the page I'm looking at so my changes will be taken and I can debug the new changes in my browser without having to restart the whole application
PS I turn off "EnableOptimizations" option so instead of getting minified everything is just in 1 file