@@ -239,14 +239,14 @@ class Project {
239239 return sourceFiles ;
240240 }
241241 addSourceFilesFromTsConfig ( tsConfigFilePath ) {
242- const resolver = this . _getTsConfigResolover ( tsConfigFilePath ) ;
242+ const resolver = this . _getTsConfigResolver ( tsConfigFilePath ) ;
243243 return this . _addSourceFilesForTsConfigResolver ( resolver , resolver . getCompilerOptions ( ) ) ;
244244 }
245245 addSourceFilesFromTsConfigSync ( tsConfigFilePath ) {
246- const resolver = this . _getTsConfigResolover ( tsConfigFilePath ) ;
246+ const resolver = this . _getTsConfigResolver ( tsConfigFilePath ) ;
247247 return this . _addSourceFilesForTsConfigResolverSync ( resolver , resolver . getCompilerOptions ( ) ) ;
248248 }
249- _getTsConfigResolover ( tsConfigFilePath ) {
249+ _getTsConfigResolver ( tsConfigFilePath ) {
250250 const standardizedFilePath = this . _fileSystemWrapper . getStandardizedAbsolutePath ( tsConfigFilePath ) ;
251251 return new TsConfigResolver ( this . _fileSystemWrapper , standardizedFilePath , this . compilerOptions . getEncoding ( ) ) ;
252252 }
@@ -327,9 +327,9 @@ class Project {
327327 if ( isStandardizedFilePath ( filePathOrSearchFunction ) ) {
328328 return this . _sourceFileCache . getSourceFileFromCacheFromFilePath ( filePathOrSearchFunction ) ;
329329 }
330- const allSoureFilesIterable = this . getSourceFiles ( ) ;
330+ const allSourceFilesIterable = this . getSourceFiles ( ) ;
331331 return selectSmallestDirPathResult ( function * ( ) {
332- for ( const sourceFile of allSoureFilesIterable ) {
332+ for ( const sourceFile of allSourceFilesIterable ) {
333333 if ( filePathOrSearchFunction ( sourceFile ) )
334334 yield sourceFile ;
335335 }
0 commit comments