Skip to content

Instantly share code, notes, and snippets.

View surrealist's full-sized avatar
🐌
a life.

Suthep Sangvirotjanaphat surrealist

🐌
a life.
View GitHub Profile
@surrealist
surrealist / project.csproj
Created February 27, 2013 17:57
Add to csproj to enable TypeScript 0.8.2 compile-on-save.
<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>