Update for Guptas answer for Visual Studio 2015 RC. The Microsoft.TypeScript.targets file is now located in the c: \ Program Files (x86) \ MSBuild \ Microsoft \ VisualStudio \ v14.0 \ TypeScript directory.
- TypeScriptRemoveComments .....
--removeComments - TypeScriptNoImplicitAny .....
--noImplicitAny - TypeScriptGeneratesDeclarations .....
--declaration - TypeScriptModuleKind .....
--module "$(TypeScriptModuleKind)" - TypeScriptOutFile .....
--out "$(TypeScriptOutFile)" - TypeScriptOutDir .....
--outDir "$(TypeScriptOutDir)" - TypeScriptSourceMap .....
--sourcemap - TypeScriptTarget .....
--target $(TypeScriptTarget) - TypeScriptNoResolve .....
--noResolve - TypeScriptAdditionalFlags .....
$(TypeScriptAdditionalFlags) - TypeScriptMapRoot .....
--mapRoot "$(TypeScriptMapRoot)" - TypeScriptSourceRoot .....
--sourceRoot "$(TypeScriptSourceRoot)" - TypeScriptCodePage .....
--codepage $(TypeScriptCodePage) - TypeScriptCharset .....
--charset $(TypeScriptCharset) - TypeScriptEmitBOM .....
--emitBOM - TypeScriptNoLib .....
--noLib - TypeScriptPreserveConstEnums .....
--preserveConstEnums - TypeScriptSuppressImplicitAnyIndexErrors .....
--suppressImplicitAnyIndexErrors
source share