@@ -590,10 +590,10 @@ namespace ts {
590590 }
591591 }
592592 else if ( id === "include" ) {
593- options . include = ConvertJsonOptionToStringArray ( id , jsonTypingOptions [ id ] , errors ) ;
593+ options . include = convertJsonOptionToStringArray ( id , jsonTypingOptions [ id ] , errors ) ;
594594 }
595595 else if ( id === "exclude" ) {
596- options . exclude = ConvertJsonOptionToStringArray ( id , jsonTypingOptions [ id ] , errors ) ;
596+ options . exclude = convertJsonOptionToStringArray ( id , jsonTypingOptions [ id ] , errors ) ;
597597 }
598598 else {
599599 errors . push ( createCompilerDiagnostic ( Diagnostics . Unknown_typing_option_0 , id ) ) ;
@@ -636,9 +636,9 @@ namespace ts {
636636 }
637637 }
638638 if ( opt . isFilePath ) {
639- value = normalizePath ( combinePaths ( basePath , value ) ) ;
639+ value = normalizePath ( combinePaths ( basePath , value ) ) ;
640640 if ( value === "" ) {
641- value = "." ;
641+ value = "." ;
642642 }
643643 }
644644 options [ opt . name ] = value ;
@@ -655,7 +655,7 @@ namespace ts {
655655 return { options, errors } ;
656656 }
657657
658- function ConvertJsonOptionToStringArray ( optionName : string , optionJson : any , errors : Diagnostic [ ] , func ?: ( element : string ) => string ) : string [ ] {
658+ function convertJsonOptionToStringArray ( optionName : string , optionJson : any , errors : Diagnostic [ ] , func ?: ( element : string ) => string ) : string [ ] {
659659 const items : string [ ] = [ ] ;
660660 let invalidOptionType = false ;
661661 if ( ! isArray ( optionJson ) ) {
0 commit comments