@@ -39261,7 +39261,7 @@ var ts;
3926139261 /* @internal */ ts.ioWriteTime = 0;
3926239262 /** The version of the TypeScript compiler release */
3926339263 var emptyArray = [];
39264- ts.version = "1.8.5 ";
39264+ ts.version = "1.8.7 ";
3926539265 function findConfigFile(searchPath, fileExists) {
3926639266 var fileName = "tsconfig.json";
3926739267 while (true) {
@@ -39347,7 +39347,7 @@ var ts;
3934739347 jsonContent = jsonText ? JSON.parse(jsonText) : { typings: undefined };
3934839348 }
3934939349 catch (e) {
39350- // gracefully handle if readFile fails or returns not JSON
39350+ // gracefully handle if readFile fails or returns not JSON
3935139351 jsonContent = { typings: undefined };
3935239352 }
3935339353 if (typeof jsonContent.typings === "string") {
@@ -39409,7 +39409,7 @@ var ts;
3940939409 searchName = ts.normalizePath(ts.combinePaths(searchPath, moduleName));
3941039410 referencedSourceFile = ts.forEach(supportedExtensions, function (extension) {
3941139411 if (extension === ".tsx" && !compilerOptions.jsx) {
39412- // resolve .tsx files only if jsx support is enabled
39412+ // resolve .tsx files only if jsx support is enabled
3941339413 // 'logical not' handles both undefined and None cases
3941439414 return undefined;
3941539415 }
@@ -39583,7 +39583,7 @@ var ts;
3958339583 });
3958439584 var filesByName = ts.createFileMap();
3958539585 // stores 'filename -> file association' ignoring case
39586- // used to track cases when two file names differ only in casing
39586+ // used to track cases when two file names differ only in casing
3958739587 var filesByNameIgnoreCase = host.useCaseSensitiveFileNames() ? ts.createFileMap(function (fileName) { return fileName.toLowerCase(); }) : undefined;
3958839588 if (oldProgram) {
3958939589 // check properties that can affect structure of the program or module resolution strategy
@@ -40095,7 +40095,7 @@ var ts;
4009540095 break;
4009640096 }
4009740097 // TypeScript 1.0 spec (April 2014): 12.1.6
40098- // An ExternalImportDeclaration in an AmbientExternalModuleDeclaration may reference other external modules
40098+ // An ExternalImportDeclaration in an AmbientExternalModuleDeclaration may reference other external modules
4009940099 // only through top - level external module names. Relative external module names are not permitted.
4010040100 if (!inAmbientModule || !ts.isExternalModuleNameRelative(moduleNameExpr.text)) {
4010140101 (imports || (imports = [])).push(moduleNameExpr);
@@ -40113,7 +40113,7 @@ var ts;
4011340113 (moduleAugmentations || (moduleAugmentations = [])).push(moduleName);
4011440114 }
4011540115 else if (!inAmbientModule) {
40116- // An AmbientExternalModuleDeclaration declares an external module.
40116+ // An AmbientExternalModuleDeclaration declares an external module.
4011740117 // This type of declaration is permitted only in the global module.
4011840118 // The StringLiteral must specify a top - level external module name.
4011940119 // Relative external module names are not permitted
0 commit comments