When I create a new \"HTMLWeb App\" project, I get a .csproj with a few default options in the project XML for Typescript. Where can I find a list of all possible TypeScript
I found the list of options in the .targets
file that shipped with the TypeScript installation. Here is the full list of options with the command line argument that gets actually sent to "tsc.exe" (the TypeScript compiler)
--comments
--declaration
--module $(TypeScriptModuleKind)
--nolib
--out $(TypeScriptOutFile)
--sourcemap
--target $(TypeScriptTarget)
$(TypeScriptAdditionalFlags)