(configPath: string | null)
| 245 | } |
| 246 | |
| 247 | function resolveJsConfigPath(configPath: string | null): string | null { |
| 248 | if (!configPath) return null |
| 249 | if (configPath.endsWith('.css')) return null |
| 250 | return configPath |
| 251 | } |
| 252 | |
| 253 | let configPathCache = new Map<string, string | null>() |
| 254 |
no outgoing calls
no test coverage detected
searching dependent graphs…