File tree Expand file tree Collapse file tree 6 files changed +3806
-3919
lines changed
1.8.2_babel-allowSyntheticDefaultImports Expand file tree Collapse file tree 6 files changed +3806
-3919
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ function setModuleMeta(
159159function getOptionsHash ( loaderOptions : LoaderOptions ) {
160160 const hash = crypto . createHash ( 'sha256' ) ;
161161 Object . keys ( loaderOptions ) . forEach ( key => {
162- const value = loaderOptions [ key ] ;
162+ const value = loaderOptions [ key as keyof LoaderOptions ] ;
163163 if ( value !== undefined ) {
164164 const valueString =
165165 typeof value === 'function' ? value . toString ( ) : JSON . stringify ( value ) ;
Original file line number Diff line number Diff line change 55 "noImplicitReturns" : true ,
66 "noUnusedLocals" : true ,
77 "noUnusedParameters" : true ,
8- "suppressImplicitAnyIndexErrors" : true ,
98 "strict" : true ,
109 "module" : " commonjs" ,
1110 "moduleResolution" : " node" ,
Original file line number Diff line number Diff line change 77 "noImplicitAny" : true ,
88 "preserveConstEnums" : true ,
99 "removeComments" : false ,
10- "suppressImplicitAnyIndexErrors" : true ,
1110 "target" : " es2015"
1211 }
1312}
Original file line number Diff line number Diff line change 99 "noImplicitAny" : true ,
1010 "preserveConstEnums" : true ,
1111 "removeComments" : false ,
12- "suppressImplicitAnyIndexErrors" : true ,
1312 "target" : " es2016"
1413 }
1514}
Original file line number Diff line number Diff line change 44 "noImplicitAny" : true ,
55 "preserveConstEnums" : true ,
66 "removeComments" : false ,
7- "suppressImplicitAnyIndexErrors" : true ,
87 "target" : " es6"
98 }
109}
You can’t perform that action at this time.
0 commit comments