File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1941,17 +1941,17 @@ namespace ts {
1941
1941
1942
1942
1943
1943
1944
- let commandLineOptions_stringToEnum : CommandLineOptionOfCustomType [ ] ;
1944
+ let commandLineOptionsStringToEnum : CommandLineOptionOfCustomType [ ] ;
1945
1945
1946
1946
/** JS users may pass in string values for enum compiler options (such as ModuleKind), so convert. */
1947
1947
function fixupCompilerOptions ( options : CompilerOptions , diagnostics : Diagnostic [ ] ) : CompilerOptions {
1948
1948
// Lazily create this value to fix module loading errors.
1949
- commandLineOptions_stringToEnum = commandLineOptions_stringToEnum || < CommandLineOptionOfCustomType [ ] > filter ( optionDeclarations , o =>
1949
+ commandLineOptionsStringToEnum = commandLineOptionsStringToEnum || < CommandLineOptionOfCustomType [ ] > filter ( optionDeclarations , o =>
1950
1950
typeof o . type === "object" && ! forEachValue ( < Map < any > > o . type , v => typeof v !== "number" ) ) ;
1951
1951
1952
1952
options = clone ( options ) ;
1953
1953
1954
- for ( const opt of commandLineOptions_stringToEnum ) {
1954
+ for ( const opt of commandLineOptionsStringToEnum ) {
1955
1955
if ( ! hasProperty ( options , opt . name ) ) {
1956
1956
continue ;
1957
1957
}
You can’t perform that action at this time.
0 commit comments