vscode/extensions/npm
2018-06-04 11:42:05 +02:00
..
.vscode ${workspaceRoot} -> ${workspaceFolder} 2017-09-19 11:21:49 +02:00
images Fixing #43978 add description/readme 2018-02-21 13:16:58 +01:00
resources Add inline action for running 'debug scripts' 2018-05-23 22:56:40 +02:00
src Reapply fix for #50790 2018-06-01 09:35:42 +02:00
.vscodeignore use vsce to determine what to package when bundling extensions 2017-06-21 16:17:21 +02:00
package.json associate npmignore with ignore language (for #51026) 2018-06-04 11:42:05 +02:00
package.nls.json Support to run npm install from a package node 2018-05-28 14:41:28 +02:00
README.md Merge NPM Scripts: Added configuration option to change default click action #49282 2018-05-28 11:09:36 +02:00
tsconfig.json remove commented out lines 2018-06-04 09:42:47 +02:00
yarn.lock Fixing #31217 npm script not detected if the package.json is not in root folder 2018-02-28 16:51:43 +01:00

Node npm

Notice This is a an extension that is bundled with Visual Studio Code.

This extension supports running npm scripts defined in the package.json as tasks. Scripts with the name 'build', 'compile', or 'watch' are treated as build tasks.

To run scripts as tasks you use the Tasks menu.

For more information about auto detection of Tasks pls see the documentation.

Settings

  • npm.autoDetect enable detecting scripts as tasks, the default is on.
  • npm.runSilent run npm script with the --silent option, the default is false.
  • npm.packageManager the package manager used to run the scripts: npm or yarn, the default is npm.
  • 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.