File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -457,6 +457,7 @@ namespace ts {
457457 maxNodeModuleJsDepth : 2 ,
458458 allowSyntheticDefaultImports : true ,
459459 skipLibCheck : true ,
460+ noEmit : true ,
460461 module : ModuleKind . CommonJS ,
461462 target : ScriptTarget . ES5 ,
462463 noImplicitAny : false ,
@@ -486,6 +487,7 @@ namespace ts {
486487 maxNodeModuleJsDepth : 2 ,
487488 allowSyntheticDefaultImports : true ,
488489 skipLibCheck : true ,
490+ noEmit : true ,
489491 module : ModuleKind . CommonJS ,
490492 target : ScriptTarget . ES5 ,
491493 noImplicitAny : false ,
@@ -510,7 +512,8 @@ namespace ts {
510512 allowJs : true ,
511513 maxNodeModuleJsDepth : 2 ,
512514 allowSyntheticDefaultImports : true ,
513- skipLibCheck : true
515+ skipLibCheck : true ,
516+ noEmit : true
514517 } ,
515518 errors : [ {
516519 file : undefined ,
@@ -532,7 +535,8 @@ namespace ts {
532535 allowJs : true ,
533536 maxNodeModuleJsDepth : 2 ,
534537 allowSyntheticDefaultImports : true ,
535- skipLibCheck : true
538+ skipLibCheck : true ,
539+ noEmit : true
536540 } ,
537541 errors : [ ]
538542 }
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ namespace ts.projectSystem {
185185 allowSyntheticDefaultImports : true ,
186186 maxNodeModuleJsDepth : 2 ,
187187 skipLibCheck : true ,
188+ noEmit : true
188189 } ;
189190
190191 it ( "sends telemetry for typeAcquisition settings" , ( ) => {
You can’t perform that action at this time.
0 commit comments