(pattern, useCaseSensitiveFileNames)
| 20641 | } |
| 20642 | ts.getFileMatcherPatterns = getFileMatcherPatterns; |
| 20643 | function getRegexFromPattern(pattern, useCaseSensitiveFileNames) { |
| 20644 | return new RegExp(pattern, useCaseSensitiveFileNames ? "" : "i"); |
| 20645 | } |
| 20646 | ts.getRegexFromPattern = getRegexFromPattern; |
| 20647 | /** @param path directory of the tsconfig.json */ |
| 20648 | function matchFiles(path, extensions, excludes, includes, useCaseSensitiveFileNames, currentDirectory, depth, getFileSystemEntries, realpath) { |