0

Is it possible to use TsLint without installing Node and/or Web Essentials? I just want something small and light I can run on the windows command line, like with JsHint.

user826840
  • 1,233
  • 2
  • 13
  • 28

1 Answers1

1

No. But if you have node installed you can run ttslint from the common line. Just do ""npm install tslint -g"

See https://www.npmjs.org/package/tslint

basarat
  • 261,912
  • 58
  • 460
  • 511
  • I was having problems getting it to run with a fresh Node install. Turns out Node doesn't set the path on Windows until after you logout/in. – user826840 Apr 16 '14 at 08:59
  • @user826840 it does. Just restart the shell (cmd). Shell doesn't pickup the system path changes untill a restart > at least that has been my experience :) – basarat Apr 16 '14 at 09:49