File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -192,9 +192,6 @@ module FourSlash {
192
192
// Whether or not to generate .d.ts file
193
193
public enableDeclaration = false ;
194
194
195
- // Whether or not to generate one output javascript file
196
- public enableSingleOutputFile = false ;
197
-
198
195
// Output filename for single-output-file option
199
196
public singleOutputFilename : string = undefined ;
200
197
@@ -463,10 +460,10 @@ module FourSlash {
463
460
464
461
public verifyEmitOutput ( state : ts . EmitOutputResult , filename ?: string ) {
465
462
if ( this . enableDeclaration ) {
466
- this . languageServiceShimHost . setCompilationSettings ( { generateDeclarationFiles : true } ) ;
463
+ this . languageServiceShimHost . setCompilationSettings ( { generateDeclarationFiles : true } ) ;
467
464
}
468
465
469
- if ( this . enableSingleOutputFile ) {
466
+ if ( this . singleOutputFilename !== undefined ) {
470
467
this . languageServiceShimHost . setCompilationSettings ( { outFileOption : this . singleOutputFilename } ) ;
471
468
}
472
469
You can’t perform that action at this time.
0 commit comments