简体   繁体   中英

Visual Studio Code, how to set a config to show scripts only from the root package.json

I have multiple package.json files in my project in different folders. VSCode reads scripts from all the files and shows them up in the "NPM SCRIPTS" panel. I want to show scripts only from the root package.json file. How to add config to the project to read only the root package.json or maybe set a precise path to it. Is it possible? Thanks for any help

Not exactly sure why this glob works, but this setting (in settings.json ) seems to work:

"npm.exclude": "**/folder-operations/**"

where folder-operations would be your root folder.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM