(file)
| 119326 | return fileOrDirectoryExistsUsingSource(file, /*isFile*/ true); |
| 119327 | } |
| 119328 | function fileExistsIfProjectReferenceDts(file) { |
| 119329 | var source = host.getSourceOfProjectReferenceRedirect(host.toPath(file)); |
| 119330 | return source !== undefined ? |
| 119331 | ts.isString(source) ? originalFileExists.call(host.compilerHost, source) : true : |
| 119332 | undefined; |
| 119333 | } |
| 119334 | function directoryExistsIfProjectReferenceDeclDir(dir) { |
| 119335 | var dirPath = host.toPath(dir); |
| 119336 | var dirPathWithTrailingDirectorySeparator = "".concat(dirPath).concat(ts.directorySeparator); |
no test coverage detected
searching dependent graphs…