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
Asked
Active
Viewed 1,652 times
1 Answers
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
-
Menu Code -> Preferences – Bruno Grieder Dec 23 '15 at 07:56