Disable npm code lens by default

This commit is contained in:
Erich Gamma 2018-07-24 12:17:55 +02:00
parent f18ee4b087
commit 1616ea1193
2 changed files with 2 additions and 2 deletions

View file

@ -29,5 +29,5 @@ The extension provides code lense actions to run or debug a script from the edit
- `npm.exclude` - Glob patterns for folders that should be excluded from automatic script detection. The pattern is matched against the **absolute path** of the package.json. For example, to exclude all test folders use '**/test/**'.
- `npm.enableScriptExplorer` - Enable an explorer view for npm scripts.
- `npm.scriptExplorerAction` - The default click action: `open` or `run`, the default is `open`.
- `npm.scriptCodeLens.enable` - Enable/disable the code lenses to run a script.
- `npm.scriptCodeLens.enable` - Enable/disable the code lenses to run a script, the default is `false`.

View file

@ -180,7 +180,7 @@
},
"npm.scriptCodeLens.enable": {
"type": "boolean",
"default": true,
"default": false,
"scope": "resource",
"description": "%config.scriptCodeLens.enable%"
},