(rootDir: string)
| 388 | * are never resurfaced, and an explicit `exclude` still wins. |
| 389 | */ |
| 390 | export function loadIncludePatterns(rootDir: string): string[] { |
| 391 | return loadParsedConfig(rootDir).include; |
| 392 | } |
| 393 | |
| 394 | /** Test/maintenance hook: forget cached config (e.g. after rewriting it in a test). */ |
| 395 | export function clearProjectConfigCache(): void { |
no test coverage detected