I need to know how to disable compile on save for typescript files?
Tools -> Options
[ ]
Automatically compile TypeScript files which are not part of a project
Right-click the project -> Properties
Select the "TypeScript Build" tab (on the left)
Uncheck "Compile on save" under the "General" heading
Typescript compilation is enabled by default. You can do next to disable it:
<?xml version="1.0" encoding="utf-8"?>
<Project ...>
...
<PropertyGroup>
<TypeScriptCompileOnSaveEnabled>False</TypeScriptCompileOnSaveEnabled>
</PropertyGroup>
</Project>