(state, resolved, resolvedPath, parsed)
| 125390 | }, flags, parsed === null || parsed === void 0 ? void 0 : parsed.watchOptions, ts.WatchType.WildcardDirectory, resolved); }); |
| 125391 | } |
| 125392 | function watchInputFiles(state, resolved, resolvedPath, parsed) { |
| 125393 | if (!state.watch) |
| 125394 | return; |
| 125395 | ts.mutateMap(getOrCreateValueMapFromConfigFileMap(state.allWatchedInputFiles, resolvedPath), ts.arrayToMap(parsed.fileNames, function (fileName) { return toPath(state, fileName); }), { |
| 125396 | createNewValue: function (_path, input) { return state.watchFile(input, function () { return invalidateProjectAndScheduleBuilds(state, resolvedPath, ts.ConfigFileProgramReloadLevel.None); }, ts.PollingInterval.Low, parsed === null || parsed === void 0 ? void 0 : parsed.watchOptions, ts.WatchType.SourceFile, resolved); }, |
| 125397 | onDeleteValue: ts.closeFileWatcher, |
| 125398 | }); |
| 125399 | } |
| 125400 | function watchPackageJsonFiles(state, resolved, resolvedPath, parsed) { |
| 125401 | if (!state.watch || !state.lastCachedPackageJsonLookups) |
| 125402 | return; |
no test coverage detected
searching dependent graphs…