我试图Explore在 Visual Studio Code 的选项卡上排除几个文件夹。为此,我在jsconfig.json项目的根目录中添加了以下内容:
Explore
jsconfig.json
{ "compilerOptions": { "target": "ES6" }, "exclude": [ "node_modules" ] }
但是该node_modules文件夹在目录树中仍然可见。
node_modules
我究竟做错了什么?还有其他选择吗?
使用files.exclude:
workspace settings
settings.json
// Place your settings in this file to overwrite default and user settings. { "settings": { "files.exclude": { "**/.git": true, // this is a default value "**/.DS_Store": true, // this is a default value "**/node_modules": true, // this excludes all folders // named "node_modules" from // the explore tree // alternative version "node_modules": true // this excludes the folder // only from the root of // your workspace } } }
如果您选择 文件 - > 首选项 -> 用户设置,那么您可以为当前用户全局配置排除文件夹。