I have a openui project setup in visual studio code 1.2/1.3 and all the required libraries (openui runtime files) are inside /resources directory and in .js format. I am not getting any intellisense from these libraries. I have setup my jsconfig.json as follows. Can anyone help me on how to get the intellisense for the same.
Jsconfig.json:
{
"compilerOptions": {
"target": "ES6"
},
"files": [
"/resources/sap/m/*",
"resources/sap/ui/*"
]
}