(filePath: string)
| 100 | } |
| 101 | |
| 102 | function getProcessedPathKey(filePath: string): string { |
| 103 | const absolutePath: string = path.resolve(filePath); |
| 104 | const normalizedPath: string = path.normalize(absolutePath); |
| 105 | return isWindows ? normalizedPath.toLowerCase() : normalizedPath; |
| 106 | } |
| 107 | |
| 108 | async function resolveConfigIncludes( |
| 109 | config: Configuration, |
no test coverage detected