Reputation: 11317
How to disable the outlined "Debug" tip from showing up in package.json above the scripts
section:
Upvotes: 27
Views: 14719
Reputation: 7591
Do as follows,
Settings > Features > Debug > Launch
Then restart the vs code
Upvotes: 1
Reputation: 180695
The setting is
"debug.javascript.codelens.npmScripts": "never",
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.
Upvotes: 58