(missingFilePath)
| 123859 | } |
| 123860 | } |
| 123861 | function watchMissingFilePath(missingFilePath) { |
| 123862 | // If watching missing referenced config file, we are already watching it so no need for separate watcher |
| 123863 | return (parsedConfigs === null || parsedConfigs === void 0 ? void 0 : parsedConfigs.has(missingFilePath)) ? |
| 123864 | ts.noopFileWatcher : |
| 123865 | watchFilePath(missingFilePath, missingFilePath, onMissingFileChange, ts.PollingInterval.Medium, watchOptions, ts.WatchType.MissingFile); |
| 123866 | } |
| 123867 | function watchPackageJsonLookupPath(packageJsonPath) { |
| 123868 | // If the package.json is pulled into the compilation itself (eg, via json imports), don't add a second watcher here |
| 123869 | return sourceFilesCache.has(packageJsonPath) ? |
nothing calls this directly
no test coverage detected
searching dependent graphs…