I decided to jump in Visual Studio Code to create an app.
Now I can\'t seem to get intellisense working for both JQuery and JQuery Mobile.
My VSC version is 0.10
Latest (as of April 2017) suggested approach to do this is to use automatic type acquisition by adding jsconfig.json file in the root of your project with the following contents:
{
"typeAcquisition": {
"include": [
"jquery"
]
}
}
Then, in your editor you will see:
For more information, check official documentation