In particular, TypeScript does not have its own type of project at the moment, so in reality there are only templates that currently use other types of projects (for example, C #).
It's even harder to find an ASP.NET MVC 3 TypeScript template. To do this, select the "Visual C # / Web / ASP.NET MVC 3 Web Application" template, then when you click "OK", you will get an option for the TypeScript template (see the screenshot below).
In addition, since there is no source project system for TypeScript, its creation steps are simply Exec tasks in the C # project files at this time. those. in csproj you will see an action, for example:
<Target Name="BeforeBuild"> <Exec Command=""$(PROGRAMFILES)\Microsoft SDKs\TypeScript\0.8.0.0\tsc" @(TypeScriptCompile ->'"%(fullpath)"', ' ')" /> </Target>

source share