(path, options)
| 6708 | } |
| 6709 | } |
| 6710 | function isIgnoredPath(path, options) { |
| 6711 | return ts.some(ts.ignoredPaths, function (searchPath) { return isInPath(path, searchPath); }) || |
| 6712 | isIgnoredByWatchOptions(path, options, useCaseSensitiveFileNames, getCurrentDirectory); |
| 6713 | } |
| 6714 | function isInPath(path, searchPath) { |
| 6715 | if (ts.stringContains(path, searchPath)) |
| 6716 | return true; |
no test coverage detected
searching dependent graphs…