@@ -593,7 +593,7 @@ task("generate-diagnostics", [diagnosticInfoMapTs]);
593593var configureNightlyJs = path . join ( scriptsDirectory , "configureNightly.js" ) ;
594594var configureNightlyTs = path . join ( scriptsDirectory , "configureNightly.ts" ) ;
595595var packageJson = "package.json" ;
596- var programTs = path . join ( compilerDirectory , "program .ts" ) ;
596+ var versionFile = path . join ( compilerDirectory , "core .ts" ) ;
597597
598598file ( configureNightlyTs ) ;
599599
@@ -609,7 +609,7 @@ task("setDebugMode", function () {
609609} ) ;
610610
611611task ( "configure-nightly" , [ configureNightlyJs ] , function ( ) {
612- var cmd = host + " " + configureNightlyJs + " " + packageJson + " " + programTs ;
612+ var cmd = host + " " + configureNightlyJs + " " + packageJson + " " + versionFile ;
613613 console . log ( cmd ) ;
614614 exec ( cmd ) ;
615615} , { async : true } ) ;
@@ -640,7 +640,7 @@ task("importDefinitelyTypedTests", [importDefinitelyTypedTestsJs], function () {
640640
641641// Local target to build the compiler and services
642642var tscFile = path . join ( builtLocalDirectory , compilerFilename ) ;
643- compileFile ( tscFile , compilerSources , [ builtLocalDirectory , copyright ] . concat ( compilerSources ) , [ copyright ] , /*useBuiltCompiler:*/ false ) ;
643+ compileFile ( tscFile , compilerSources , [ builtLocalDirectory , copyright ] . concat ( compilerSources ) , [ copyright ] , /*useBuiltCompiler:*/ false , { noMapRoot : true } ) ;
644644
645645var servicesFile = path . join ( builtLocalDirectory , "typescriptServices.js" ) ;
646646var servicesFileInBrowserTest = path . join ( builtLocalDirectory , "typescriptServicesInBrowserTest.js" ) ;
0 commit comments