|
|
|
|
|
by redwards510
3578 days ago
|
|
If you mean IntelliSense in VS Code, I just got this figured out today! The official docs will walk you through it[1]. Be careful about reading blogs about how to do it, the process has changed from when you used to use "tsd". You need to click the little green light bulb at the bottom right of the editor to create a jsconfig.json file. Then install the typings module with:
npm install -g typings then install the language files you want. This will install node completion:
typings install dt~node --global Much easier than before! [1] https://code.visualstudio.com/docs/runtimes/nodejs#_great-co... |
|