Do not remove duplicate TS boilerplate until we find a good way to handle TS updates

This commit is contained in:
Alex Dima
2017-04-14 15:18:46 +03:00
parent 9530cf6e2b
commit a634d0bee8
2 changed files with 5 additions and 2 deletions

View File

@@ -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
};
}