@@ -312,7 +312,7 @@ interface Array<T> {}`
312
312
const watchDirectory : HostWatchDirectory = ( directory , cb ) => this . watchFile ( directory , ( ) => cb ( directory ) , PollingInterval . Medium ) ;
313
313
this . customRecursiveWatchDirectory = createRecursiveDirectoryWatcher ( {
314
314
directoryExists : path => this . directoryExists ( path ) ,
315
- getAccessileSortedChildDirectories : path => this . getDirectories ( path ) ,
315
+ getAccessibleSortedChildDirectories : path => this . getDirectories ( path ) ,
316
316
filePathComparer : this . useCaseSensitiveFileNames ? compareStringsCaseSensitive : compareStringsCaseInsensitive ,
317
317
watchDirectory,
318
318
realpath : s => this . realpath ( s )
@@ -322,7 +322,7 @@ interface Array<T> {}`
322
322
const watchDirectory : HostWatchDirectory = ( directory , cb ) => this . watchDirectory ( directory , fileName => cb ( fileName ) , /*recursive*/ false ) ;
323
323
this . customRecursiveWatchDirectory = createRecursiveDirectoryWatcher ( {
324
324
directoryExists : path => this . directoryExists ( path ) ,
325
- getAccessileSortedChildDirectories : path => this . getDirectories ( path ) ,
325
+ getAccessibleSortedChildDirectories : path => this . getDirectories ( path ) ,
326
326
filePathComparer : this . useCaseSensitiveFileNames ? compareStringsCaseSensitive : compareStringsCaseInsensitive ,
327
327
watchDirectory,
328
328
realpath : s => this . realpath ( s )
@@ -333,7 +333,7 @@ interface Array<T> {}`
333
333
const watchDirectory : HostWatchDirectory = ( directory , cb ) => watchFile ( directory , ( ) => cb ( directory ) , PollingInterval . Medium ) ;
334
334
this . customRecursiveWatchDirectory = createRecursiveDirectoryWatcher ( {
335
335
directoryExists : path => this . directoryExists ( path ) ,
336
- getAccessileSortedChildDirectories : path => this . getDirectories ( path ) ,
336
+ getAccessibleSortedChildDirectories : path => this . getDirectories ( path ) ,
337
337
filePathComparer : this . useCaseSensitiveFileNames ? compareStringsCaseSensitive : compareStringsCaseInsensitive ,
338
338
watchDirectory,
339
339
realpath : s => this . realpath ( s )
0 commit comments