(path, searchPath)
| 6712 | isIgnoredByWatchOptions(path, options, useCaseSensitiveFileNames, getCurrentDirectory); |
| 6713 | } |
| 6714 | function isInPath(path, searchPath) { |
| 6715 | if (ts.stringContains(path, searchPath)) |
| 6716 | return true; |
| 6717 | if (useCaseSensitiveFileNames) |
| 6718 | return false; |
| 6719 | return ts.stringContains(toCanonicalFilePath(path), searchPath); |
| 6720 | } |
| 6721 | } |
| 6722 | ts.createDirectoryWatcherSupportingRecursive = createDirectoryWatcherSupportingRecursive; |
| 6723 | /*@internal*/ |