@@ -129,6 +129,7 @@ var harnessSources = harnessCoreSources.concat([
129129 "initializeTSConfig.ts" ,
130130 "printer.ts" ,
131131 "textChanges.ts" ,
132+ "telemetry.ts" ,
132133 "transform.ts" ,
133134 "customTransforms.ts" ,
134135] . map ( function ( f ) {
@@ -172,7 +173,8 @@ var es2016LibrarySourceMap = es2016LibrarySource.map(function (source) {
172173var es2017LibrarySource = [
173174 "es2017.object.d.ts" ,
174175 "es2017.sharedmemory.d.ts" ,
175- "es2017.string.d.ts"
176+ "es2017.string.d.ts" ,
177+ "es2017.intl.d.ts"
176178] ;
177179
178180var es2017LibrarySourceMap = es2017LibrarySource . map ( function ( source ) {
@@ -1078,7 +1080,7 @@ var loggedIOJsPath = builtLocalDirectory + 'loggedIO.js';
10781080file ( loggedIOJsPath , [ builtLocalDirectory , loggedIOpath ] , function ( ) {
10791081 var temp = builtLocalDirectory + 'temp' ;
10801082 jake . mkdirP ( temp ) ;
1081- var options = "--types --outdir " + temp + ' ' + loggedIOpath ;
1083+ var options = "--target es5 --lib es6 -- types --outdir " + temp + ' ' + loggedIOpath ;
10821084 var cmd = host + " " + LKGDirectory + compilerFilename + " " + options + " " ;
10831085 console . log ( cmd + "\n" ) ;
10841086 var ex = jake . createExec ( [ cmd ] ) ;
@@ -1092,7 +1094,7 @@ file(loggedIOJsPath, [builtLocalDirectory, loggedIOpath], function () {
10921094
10931095var instrumenterPath = harnessDirectory + 'instrumenter.ts' ;
10941096var instrumenterJsPath = builtLocalDirectory + 'instrumenter.js' ;
1095- compileFile ( instrumenterJsPath , [ instrumenterPath ] , [ tscFile , instrumenterPath ] . concat ( libraryTargets ) , [ ] , /*useBuiltCompiler*/ true ) ;
1097+ compileFile ( instrumenterJsPath , [ instrumenterPath ] , [ tscFile , instrumenterPath ] . concat ( libraryTargets ) , [ ] , /*useBuiltCompiler*/ true , { lib : "es6" , types : [ "node" ] } ) ;
10961098
10971099desc ( "Builds an instrumented tsc.js" ) ;
10981100task ( 'tsc-instrumented' , [ loggedIOJsPath , instrumenterJsPath , tscFile ] , function ( ) {
0 commit comments