I am working with the default ASP.NET 5 web project template and am trying to determine how to dictate TypeScript tools and, ultimately, the compiler version for my application.
I am not , but using Gulp, so this answer post does not seem to contain water. The reason is that my application, even without Gulp, must be told which TypeScript compiler to use. This answer also did not concern version search, but the use of functions not yet supported.
In VSNET 2013, the TypeScript version of the tool and the target compilation were installed in the project properties:
<TypeScriptToolsVersion>1.7</TypeScriptToolsVersion>
I believe this is a variant of the section of compilerOptionsmy file tsconfig.json. However, I am not getting intellisense for version, and it looks like the documentation is sparse. This link indicates that it just emits a version of the compiler, but does not allow you to specify it.
I currently have version 1.6 and 1.7 installed on my machine. If I need to dictate a specific version of the compiler, how to install it in an ASP.NET 5 web template? Again, the answer does not immediately use Gulp, because it builds and compiles my files .ts, as it is now, therefore, the compiler used dictates something.
source
share