Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

enter image description here

like image 282
Wenfang Du Avatar asked Jun 13 '20 09:06

Wenfang Du


People also ask

How do I disable debugger attached?

Just Delete the . vscode file from the directory you are working in and reopen the window the debugger will be gone.

What is disable Debug mode in VS code?

To end a debugging session in Microsoft Visual Studio, from the Debug menu, choose Stop Debugging.

How do I disable Debugging in Visual Basic?

You can configure Just-In-Time debugging from the Visual Studio Tools > Options (or Debug > Options) dialog box. To enable or disable Just-In-Time debugging: On the Tools or Debug menu, select Options > Debugging > Just-In-Time.


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.

like image 56
Mark Avatar answered Sep 24 '22 23:09

Mark