How to disable “Debug” from showing in package.json

Viewed 10100

How to disable the outlined "Debug" tip from showing up in package.json above the scripts section:

enter image description here

1 Answers

The setting is

  "debug.javascript.codelens.npmScripts": "never",

codelensDebug

Since it appears as part of the scripts section of the package.json I searched for scripts in the Settings and it was the second entry.

Related