我想在特定路径上排除文件(例如fe / dist),但它不起作用。
"files.exclude": {
"**/dist": true, // working, but exclude all dist folders (don't want)
"fe/dist" // not working
"/fe/dist" // not working
"**/fe/dist" // not working
"./fe/dist" // not working
"${workspaceRoot}/fe/dist": true, // not working
}
任何想法?
答案 0 :(得分:0)
要仅排除特定的嵌套文件夹(例如fe / dist),请尝试
"files.exclude": {
"**fe/dist": true
}