0

The title says all, anyway, after update yesterday visual code studio is not transpiling ts files to js saying tsc is not recognized asa external or internal command

blackHawk
  • 6,047
  • 13
  • 57
  • 100

1 Answers1

0

In your settings, set the location of the typescript sdk

The setting can now take absolute and relative paths.

I have typescript installed locally in my projects, so my stting looks like

 {
     "typescript.tsdk": "./node_modules/typescript/lib"
 }

I use VSCode 0.10.5 and TS 1.7.5 which are the latest at time of writing

Bruno Grieder
  • 28,128
  • 8
  • 69
  • 101