File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ namespace ts {
618618 // A parallel array to projectReferences storing the results of reading in the referenced tsconfig files
619619 const resolvedProjectReferences : ( ResolvedProjectReference | undefined ) [ ] | undefined = projectReferences ? [ ] : undefined ;
620620 const projectReferenceRedirects : Map < string > = createMap ( ) ;
621-
621+
622622 const shouldCreateNewSourceFile = shouldProgramCreateNewSourceFiles ( oldProgram , options ) ;
623623 const structuralIsReused = tryReuseStructureFromOldProgram ( ) ;
624624 if ( structuralIsReused !== StructureIsReused . Completely ) {
Original file line number Diff line number Diff line change @@ -1155,7 +1155,7 @@ namespace vfs {
11551155 EROFS : "file system is read-only"
11561156 } ) ;
11571157
1158- export function createIOError ( code : keyof typeof IOErrorMessages , details : string = "" ) {
1158+ export function createIOError ( code : keyof typeof IOErrorMessages , details = "" ) {
11591159 const err : NodeJS . ErrnoException = new Error ( `${ code } : ${ IOErrorMessages [ code ] } ${ details } ` ) ;
11601160 err . code = code ;
11611161 if ( Error . captureStackTrace ) Error . captureStackTrace ( err , createIOError ) ;
You can’t perform that action at this time.
0 commit comments