Visual Studio Code and jsconfig.json -


i see in 0.5.0 /// <reference path="../typings/jquery/jquery.d.ts"/> can removed .js files , added overriding jsconfig.json file. have therefore dropped jsconfig.json file root directory of project.

however when create file jsconfig.json , add line referring above path jquery.d.ts file , remove /// .js files, not seeing intellisense return. expect visual studio code.

the jsconfig.json file had created was.

{     "files": [         "../typings/jquery/jquery.d.ts"     ] } 

maybe missing point of jsconfig.json, quite new this.

you don't need add "files" jsconfig.json, reason need if want specific set.

instead, remove files array. sounds still won't work @ point based on description. assumption not have .\typings\tsd.d.ts" file. seems read references correct files. in order that, need "tsd install node --save".

good luck!


Comments