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
I had a little bit problem with it, so I would like to share the solution that worked for me. At first you need in project root package.json if you don't have it in console simply type:
$ npm init
this command should create a package.json with necessary content in it. Then run this command in console:
$ npm install --save @types/jquery
and like @oldbam said before use automatic type acquisition: by creating jsonconfig.json with code below:
{
"typeAcquisition": {
"include": [
"jquery"
]
}
}