You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/watchedProgram.ts
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -241,12 +241,13 @@ namespace ts {
241
241
letneedsReload: boolean;// true if the config file changed and needs to reload it from the disk
242
242
letmissingFilesMap: Map<FileWatcher>;// Map of file watchers for the missing files
243
243
letconfigFileWatcher: FileWatcher;// watcher for the config file
244
-
letwatchedWildcardDirectories: Map<WildcardDirectoryWatchers>;// map of watchers for the wild card directories in the config file
244
+
letwatchedWildcardDirectories: Map<WildcardDirectoryWatcher>;// map of watchers for the wild card directories in the config file
245
245
lettimerToUpdateProgram: any;// timer callback to recompile the program
246
246
247
247
constsourceFilesCache=createMap<HostFileInfo|string>();// Cache that stores the source file and version info
248
248
letmissingFilePathsRequestedForRelease: Path[];// These paths are held temparirly so that we can remove the entry from source file cache if the file is not tracked by missing files
249
249
lethasInvalidatedResolution: HasInvalidatedResolution;// Passed along to see if source file has invalidated resolutions
250
+
lethasChangedCompilerOptions=false;// True if the compiler options have changed between compilations
0 commit comments