Last active
May 22, 2016 20:56
-
-
Save squadwuschel/9b460dcfac8f50baca571d2dacfcfc36 to your computer and use it in GitHub Desktop.
Visual Studio 2015 TypeScript Settings inkl. Setting zum deaktivieren von Kompilations
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)|$(Platform)' == 'Debug|AnyCPU'"> | |
<TypeScriptTarget>ES5</TypeScriptTarget> | |
<TypeScriptJSXEmit>None</TypeScriptJSXEmit> | |
<TypeScriptCompileOnSaveEnabled>True</TypeScriptCompileOnSaveEnabled> | |
<TypeScriptNoImplicitAny>False</TypeScriptNoImplicitAny> | |
<TypeScriptModuleKind /> | |
<TypeScriptRemoveComments>False</TypeScriptRemoveComments> | |
<TypeScriptOutFile /> | |
<TypeScriptOutDir /> | |
<TypeScriptGeneratesDeclarations>False</TypeScriptGeneratesDeclarations> | |
<TypeScriptNoEmitOnError>True</TypeScriptNoEmitOnError> | |
<TypeScriptSourceMap>True</TypeScriptSourceMap> | |
<TypeScriptMapRoot /> | |
<TypeScriptSourceRoot /> | |
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked> | |
</PropertyGroup> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment