(rootDir: string)
| 335 | * are never resurfaced, and an explicit `exclude` still wins. |
| 336 | */ |
| 337 | export function loadIncludePatterns(rootDir: string): string[] { |
| 338 | return loadParsedConfig(rootDir).include; |
| 339 | } |
| 340 | |
| 341 | /** Test/maintenance hook: forget cached config (e.g. after rewriting it in a test). */ |
| 342 | export function clearProjectConfigCache(): void { |
no test coverage detected