Created
March 12, 2015 10:44
-
-
Save rheid/557102f6291b0d6502b5 to your computer and use it in GitHub Desktop.
TypeScript in Visual Studio For C#-style projects (.csproj):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> | |
<TypeScriptTarget>ES5</TypeScriptTarget> | |
<TypeScriptIncludeComments>true</TypeScriptIncludeComments> | |
<TypeScriptSourceMap>true</TypeScriptSourceMap> | |
</PropertyGroup> | |
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> | |
<TypeScriptTarget>ES5</TypeScriptTarget> | |
<TypeScriptIncludeComments>false</TypeScriptIncludeComments> | |
<TypeScriptSourceMap>false</TypeScriptSourceMap> | |
</PropertyGroup> | |
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment