diff --git a/build/lib/bundle.js b/build/lib/bundle.js index 78375d51eb6..981e314adb6 100644 --- a/build/lib/bundle.js +++ b/build/lib/bundle.js @@ -3,6 +3,7 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ "use strict"; +exports.__esModule = true; var fs = require("fs"); var path = require("path"); var vm = require("vm"); @@ -114,7 +115,8 @@ function emitEntryPoints(modules, entryPoints) { } }); return { - files: extractStrings(removeDuplicateTSBoilerplate(result)), + // TODO@TS 2.1.2 + files: extractStrings(/*removeDuplicateTSBoilerplate(*/ result /*)*/), bundleData: bundleData }; } diff --git a/build/lib/bundle.ts b/build/lib/bundle.ts index ea07e54870b..748acd6e308 100644 --- a/build/lib/bundle.ts +++ b/build/lib/bundle.ts @@ -226,7 +226,8 @@ function emitEntryPoints(modules: IBuildModuleInfo[], entryPoints: IEntryPointMa }); return { - files: extractStrings(removeDuplicateTSBoilerplate(result)), + // TODO@TS 2.1.2 + files: extractStrings(/*removeDuplicateTSBoilerplate(*/result/*)*/), bundleData: bundleData }; }