mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
.. | ||
.vscode | ||
images | ||
src | ||
.vscodeignore | ||
package.json | ||
package.nls.json | ||
README.md | ||
tsconfig.json | ||
yarn.lock |
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 ison
.npm.runSilent
run npm script with the--silent
option, the default isfalse
.npm.packageManager
the package manager used to run the scripts:npm
oryarn
, the default isnpm
.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/**'.