VSCode - disable three dots for "Could not find a declaration file for module"

Viewed 444

How to prevent these three dots from showing up without adding the corresponding type files?

enter image description here

1 Answers

Go to settings.json and paste

"javascript.suggestionActions.enabled": false
Related