VSCode 设置文件显示和搜索过滤
打开 setting.json
{ "search.exclude": { "**/node_modules": true, "**/bower_components": true, "dist/": true, "build/": true, "temp/": true, "library/": true, "**/*.anim": true }, "files.exclude": { "**/.git": true, "**/.DS_Store": true, "**/*.meta": true, "library/": true, "local/": true, "temp/": true } }
上面的字段将为 VS Code 设置搜索时排除的目录,和在文件列表中隐藏的文件类型,可以根据自己需要修改