@@ -890,7 +890,7 @@ gulp.task(loggedIOJsPath, false, [], (done) => {
890890 const temp = path . join ( builtLocalDirectory , "temp" ) ;
891891 mkdirP ( temp , ( err ) => {
892892 if ( err ) { console . error ( err ) ; done ( err ) ; process . exit ( 1 ) ; } ;
893- exec ( host , [ LKGCompiler , "--outdir" , temp , loggedIOpath ] , ( ) => {
893+ exec ( host , [ LKGCompiler , "--types -- outdir" , temp , loggedIOpath ] , ( ) => {
894894 fs . renameSync ( path . join ( temp , "/harness/loggedIO.js" ) , loggedIOJsPath ) ;
895895 del ( temp ) . then ( ( ) => done ( ) , done ) ;
896896 } , done ) ;
@@ -911,8 +911,8 @@ gulp.task(instrumenterJsPath, false, [servicesFile], () => {
911911 . pipe ( gulp . dest ( "." ) ) ;
912912} ) ;
913913
914- gulp . task ( "tsc-instrumented" , "Builds an instrumented tsc.js" , [ loggedIOJsPath , instrumenterJsPath , servicesFile ] , ( done ) => {
915- exec ( host , [ instrumenterJsPath , "record" , "iocapture" , builtLocalDirectory , compilerFilename ] , done , done ) ;
914+ gulp . task ( "tsc-instrumented" , "Builds an instrumented tsc.js" , [ "local" , loggedIOJsPath , instrumenterJsPath , servicesFile ] , ( done ) => {
915+ exec ( host , [ instrumenterJsPath , "record" , "iocapture" , builtLocalCompiler ] , done , done ) ;
916916} ) ;
917917
918918gulp . task ( "update-sublime" , "Updates the sublime plugin's tsserver" , [ "local" , serverFile ] , ( ) => {
0 commit comments