Skip to content

Commit 80f375f

Browse files
committed
Build tests in es5 as well
1 parent 369ac86 commit 80f375f

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Jakefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,16 @@ directory(builtLocalDirectory);
497497

498498
// Task to build the tests infrastructure using the built compiler
499499
var run = path.join(builtLocalDirectory, "run.js");
500-
compileFile(run, harnessSources, [builtLocalDirectory, tscFile].concat(libraryTargets).concat(harnessSources), [], /*useBuiltCompiler:*/ true);
500+
compileFile(run, harnessSources, [builtLocalDirectory, tscFile].concat(libraryTargets).concat(harnessSources), [], /*useBuiltCompiler:*/ true,
501+
/*noOutFile*/ undefined,
502+
/*generateDeclarations*/ undefined,
503+
/*outDir*/ undefined,
504+
/*preserveConstEnums*/ undefined,
505+
/*keepComments*/ undefined,
506+
/*noResolve*/ undefined,
507+
/*stripInternal*/ undefined,
508+
/*callback*/ undefined,
509+
/*targetES5*/ true);
501510

502511
var internalTests = "internal/"
503512

0 commit comments

Comments
 (0)