Is there a way to prevent TypeScript files from compiling during build/debug in Visual Studio projects like ASP.NET MVC5?
I have already set tsconfig.json
properties compileOnSave
and buildOnSave
to false. Do I need to add anything to the project's .csproj
file to ensure TypeScript files are not compiled?
While debugging the ASP.NET MVC5 project, it automatically compiles all .ts
files.
Any assistance on this matter would be greatly appreciated. Thank you!