标签: minimatch
我需要使用minimatch定位特定文件(在TypeDoc排除中 - 我不需要测试和其他一些文件)。
我需要排除/test目录中的所有文件以及所有目录中的所有index.ts
/test
index.ts
尝试**/+(index.ts|**/test/*.ts),但它无法正常工作。
**/+(index.ts|**/test/*.ts)
答案 0 :(得分:1)
使用globster.xyz尝试**/!(test)/!(index)*.ts
**/!(test)/!(index)*.ts