3

is it possible to install typescript 1.5 on visual studio 2015 without an internet access? As it comes "out of the box" with VS2015 it seems that no installer exists (except for the 1.5 beta)

But if you have no internet access, the VS installation ends with a warning because it cannot download the typescript tool. And at the end, the typescript tool is not present in the extensions list

sroll
  • 752
  • 7
  • 20

2 Answers2

5

The TypeScript installers are available at: http://www.microsoft.com/en-us/download/details.aspx?id=48593.

see Details section, and you should find a [Download] link next to the TypeScript 1.5.3/TypeScript 1.5.4.

mohamed hegazy
  • 9,191
  • 4
  • 30
  • 21
  • 2
    Hmmm quite hard to find as the title is typescript for vs 2012. However, it is simpler to download it from here than the first method, even if they both work. The typescript team should really provide a link on their site even if it is supposed to be included in vs 2015 – sroll Aug 10 '15 at 18:42
1

Found a way!

  1. Run "vs_community.exe /layout" from cmd to download all installation files (Reference: How to install VS2015 Community Edition offline)
  2. Then navigate to the folder (inside the download directory) "OfflineCache\installers".
  3. You will see two TS folders: "TypeScriptV1" and "TypeScriptV2". They are the installers for the versions 1.5.3 and 1.5.4 respectively.
Community
  • 1
  • 1
Augusto Barreto
  • 3,637
  • 4
  • 29
  • 39
  • @sroll I searched for those installers in the entire internet. This was the only solution I found to get them. I needed the installer for TypeScripts Tools 1.5.3 to solve this problem: http://stackoverflow.com/questions/31888115/visual-studio-2015-rtm-lost-js-support-after-update-typesript-tools – Augusto Barreto Aug 08 '15 at 14:03
  • 1
    tested and approved, version 1.5.3 works perfectly. I haven't try version 1.5.4 as you had problems with it. – sroll Aug 10 '15 at 07:44