如何在最小匹配中指定多个匹配项

How to specify multiple matches in minimatch

我需要使用最小匹配来定位特定文件(在 TypeDoc 中排除 - 我不需要测试和其他一些文件)。

我需要排除 /test 目录中的所有文件以及所有目录中的所有 index.ts

试过**/+(index.ts|**/test/*.ts)但没用。

尝试 **/!(test)/!(index)*.ts 使用 globster.xyz