(regexp: RegExp)
| 531 | const normalizedFilename = normalizePathName(filename) |
| 532 | const relativeFilename = normalizePathName(path.relative(options.cwd, filename)) |
| 533 | const matches = (regexp: RegExp) => regexp.test(normalizedFilename) || regexp.test(relativeFilename) |
| 534 | if (include !== undefined && !include.some(matches)) { |
| 535 | return false |
| 536 | } |