I am trying to set up the eslinting, code assist, code completion features for my SAPUI5 project in BAS. Below is the structure of package.json and the dependent node_modules are loaded into the project. I am not getting the full feature of SAPUI5 libraries in my code. Is there any easier way to achieve an integrated SAPUI5 IDE in BAS? Any suggestions here?
{
"name": "ui5barebones",
"version": "1.0.0",
"description": "Generate a barebone UI5 Application",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"keywords": [
"UI5",
"Barebones"
],
"author": "Tanmoy Mondal",
"license": "ISC",
"devDependencies": {
"@sap/eslint-plugin-ui5-jsdocs": "2.0.5",
"eslint": "^8.31.0",
"express": "^4.18.2",
"nodemon": "^2.0.20"
},
"dependencies": {
"@sapui5/ts-types-esm": "^1.108.4"
}
Regards,
Ravenclaw.