How to setup SAPUI5 Javascript auto-complete in VSCode?

1.2k Views Asked by At

I have tried to install @types/openui5 but it doesn't work.

ui5.yaml:

specVersion: '2.0'
metadata:
  name: openui5-sample-app
type: application
framework:
  name: OpenUI5
  version: "1.78.1"
1

There are 1 best solutions below

0
On BEST ANSWER

You need to configure tsconfig.json.[1] For example:

{
  "compilerOptions": {
    "module": "none",
    "target": "es2018",
    "noEmit": true,
    "checkJs": true,
    "allowJs": true,
    "types": ["@sapui5/ts-types"]
  }
}