海石花 (@haiziohhue)发现 VSCode 有个可折叠文件功能 中发帖

RT, 上星期使用npm create vue之后, 发现打开的文件会自带折叠功能 
[image]
[image]
百思不得其解, 找不到是哪个插件进行的设定, 在插件列表里到处都找不到, 最后发现是在 vscode 本身的设置里, 在这个目录下的 .vscode/setting.json 可以看到
{
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"tsconfig.json": "tsconfig.*.json, env.d.ts",
"vite.config.*": "jsconfig*, vitest.config.*, cypress.config.*, playwright.config.*",
"package.json": "pack...