mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-09 02:30:15 -06:00
Update LKG.
This commit is contained in:
parent
dd1f20e9a2
commit
0652f34cc0
@ -68828,6 +68828,11 @@ var ts;
|
||||
declFileName = paths.declarationFilePath || paths.jsFilePath || file.fileName;
|
||||
}
|
||||
if (declFileName) {
|
||||
var specifier = ts.moduleSpecifiers.getModuleSpecifier(__assign(__assign({}, options), { baseUrl: options.baseUrl && ts.toPath(options.baseUrl, host.getCurrentDirectory(), host.getCanonicalFileName) }), currentSourceFile, ts.toPath(outputFilePath, host.getCurrentDirectory(), host.getCanonicalFileName), ts.toPath(declFileName, host.getCurrentDirectory(), host.getCanonicalFileName), host, host.getSourceFiles(), undefined, host.redirectTargetsMap);
|
||||
if (!ts.pathIsRelative(specifier)) {
|
||||
recordTypeReferenceDirectivesIfNecessary([specifier]);
|
||||
return;
|
||||
}
|
||||
var fileName = ts.getRelativePathToDirectoryOrUrl(outputFilePath, declFileName, host.getCurrentDirectory(), host.getCanonicalFileName, false);
|
||||
if (ts.startsWith(fileName, "./") && ts.hasExtension(fileName)) {
|
||||
fileName = fileName.substring(2);
|
||||
@ -70620,6 +70625,7 @@ var ts;
|
||||
useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); },
|
||||
getProgramBuildInfo: ts.returnUndefined,
|
||||
getSourceFileFromReference: ts.returnUndefined,
|
||||
redirectTargetsMap: ts.createMultiMap()
|
||||
};
|
||||
emitFiles(ts.notImplementedResolver, emitHost, undefined, ts.getTransformers(config.options, customTransformers));
|
||||
return outputFiles;
|
||||
@ -75500,7 +75506,7 @@ var ts;
|
||||
if (ts.contains(missingFilePaths, path))
|
||||
return false;
|
||||
return host.fileExists(f);
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); } });
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); }, redirectTargetsMap: redirectTargetsMap });
|
||||
}
|
||||
function emitBuildInfo(writeFileCallback) {
|
||||
ts.Debug.assert(!options.out && !options.outFile);
|
||||
|
||||
@ -84562,6 +84562,15 @@ var ts;
|
||||
declFileName = paths.declarationFilePath || paths.jsFilePath || file.fileName;
|
||||
}
|
||||
if (declFileName) {
|
||||
var specifier = ts.moduleSpecifiers.getModuleSpecifier(__assign(__assign({}, options), { baseUrl: options.baseUrl && ts.toPath(options.baseUrl, host.getCurrentDirectory(), host.getCanonicalFileName) }), currentSourceFile, ts.toPath(outputFilePath, host.getCurrentDirectory(), host.getCanonicalFileName), ts.toPath(declFileName, host.getCurrentDirectory(), host.getCanonicalFileName), host, host.getSourceFiles(),
|
||||
/*preferences*/ undefined, host.redirectTargetsMap);
|
||||
if (!ts.pathIsRelative(specifier)) {
|
||||
// If some compiler option/symlink/whatever allows access to the file containing the ambient module declaration
|
||||
// via a non-relative name, emit a type reference directive to that non-relative name, rather than
|
||||
// a relative path to the declaration file
|
||||
recordTypeReferenceDirectivesIfNecessary([specifier]);
|
||||
return;
|
||||
}
|
||||
var fileName = ts.getRelativePathToDirectoryOrUrl(outputFilePath, declFileName, host.getCurrentDirectory(), host.getCanonicalFileName,
|
||||
/*isAbsolutePathAnUrl*/ false);
|
||||
if (ts.startsWith(fileName, "./") && ts.hasExtension(fileName)) {
|
||||
@ -86614,6 +86623,7 @@ var ts;
|
||||
useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); },
|
||||
getProgramBuildInfo: ts.returnUndefined,
|
||||
getSourceFileFromReference: ts.returnUndefined,
|
||||
redirectTargetsMap: ts.createMultiMap()
|
||||
};
|
||||
emitFiles(ts.notImplementedResolver, emitHost,
|
||||
/*targetSourceFile*/ undefined, ts.getTransformers(config.options, customTransformers));
|
||||
@ -92041,7 +92051,7 @@ var ts;
|
||||
return false;
|
||||
// Before falling back to the host
|
||||
return host.fileExists(f);
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); } });
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); }, redirectTargetsMap: redirectTargetsMap });
|
||||
}
|
||||
function emitBuildInfo(writeFileCallback) {
|
||||
ts.Debug.assert(!options.out && !options.outFile);
|
||||
|
||||
@ -84561,6 +84561,15 @@ var ts;
|
||||
declFileName = paths.declarationFilePath || paths.jsFilePath || file.fileName;
|
||||
}
|
||||
if (declFileName) {
|
||||
var specifier = ts.moduleSpecifiers.getModuleSpecifier(__assign(__assign({}, options), { baseUrl: options.baseUrl && ts.toPath(options.baseUrl, host.getCurrentDirectory(), host.getCanonicalFileName) }), currentSourceFile, ts.toPath(outputFilePath, host.getCurrentDirectory(), host.getCanonicalFileName), ts.toPath(declFileName, host.getCurrentDirectory(), host.getCanonicalFileName), host, host.getSourceFiles(),
|
||||
/*preferences*/ undefined, host.redirectTargetsMap);
|
||||
if (!ts.pathIsRelative(specifier)) {
|
||||
// If some compiler option/symlink/whatever allows access to the file containing the ambient module declaration
|
||||
// via a non-relative name, emit a type reference directive to that non-relative name, rather than
|
||||
// a relative path to the declaration file
|
||||
recordTypeReferenceDirectivesIfNecessary([specifier]);
|
||||
return;
|
||||
}
|
||||
var fileName = ts.getRelativePathToDirectoryOrUrl(outputFilePath, declFileName, host.getCurrentDirectory(), host.getCanonicalFileName,
|
||||
/*isAbsolutePathAnUrl*/ false);
|
||||
if (ts.startsWith(fileName, "./") && ts.hasExtension(fileName)) {
|
||||
@ -86613,6 +86622,7 @@ var ts;
|
||||
useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); },
|
||||
getProgramBuildInfo: ts.returnUndefined,
|
||||
getSourceFileFromReference: ts.returnUndefined,
|
||||
redirectTargetsMap: ts.createMultiMap()
|
||||
};
|
||||
emitFiles(ts.notImplementedResolver, emitHost,
|
||||
/*targetSourceFile*/ undefined, ts.getTransformers(config.options, customTransformers));
|
||||
@ -92040,7 +92050,7 @@ var ts;
|
||||
return false;
|
||||
// Before falling back to the host
|
||||
return host.fileExists(f);
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); } });
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); }, redirectTargetsMap: redirectTargetsMap });
|
||||
}
|
||||
function emitBuildInfo(writeFileCallback) {
|
||||
ts.Debug.assert(!options.out && !options.outFile);
|
||||
|
||||
@ -84550,6 +84550,15 @@ var ts;
|
||||
declFileName = paths.declarationFilePath || paths.jsFilePath || file.fileName;
|
||||
}
|
||||
if (declFileName) {
|
||||
var specifier = ts.moduleSpecifiers.getModuleSpecifier(__assign(__assign({}, options), { baseUrl: options.baseUrl && ts.toPath(options.baseUrl, host.getCurrentDirectory(), host.getCanonicalFileName) }), currentSourceFile, ts.toPath(outputFilePath, host.getCurrentDirectory(), host.getCanonicalFileName), ts.toPath(declFileName, host.getCurrentDirectory(), host.getCanonicalFileName), host, host.getSourceFiles(),
|
||||
/*preferences*/ undefined, host.redirectTargetsMap);
|
||||
if (!ts.pathIsRelative(specifier)) {
|
||||
// If some compiler option/symlink/whatever allows access to the file containing the ambient module declaration
|
||||
// via a non-relative name, emit a type reference directive to that non-relative name, rather than
|
||||
// a relative path to the declaration file
|
||||
recordTypeReferenceDirectivesIfNecessary([specifier]);
|
||||
return;
|
||||
}
|
||||
var fileName = ts.getRelativePathToDirectoryOrUrl(outputFilePath, declFileName, host.getCurrentDirectory(), host.getCanonicalFileName,
|
||||
/*isAbsolutePathAnUrl*/ false);
|
||||
if (ts.startsWith(fileName, "./") && ts.hasExtension(fileName)) {
|
||||
@ -86602,6 +86611,7 @@ var ts;
|
||||
useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); },
|
||||
getProgramBuildInfo: ts.returnUndefined,
|
||||
getSourceFileFromReference: ts.returnUndefined,
|
||||
redirectTargetsMap: ts.createMultiMap()
|
||||
};
|
||||
emitFiles(ts.notImplementedResolver, emitHost,
|
||||
/*targetSourceFile*/ undefined, ts.getTransformers(config.options, customTransformers));
|
||||
@ -92029,7 +92039,7 @@ var ts;
|
||||
return false;
|
||||
// Before falling back to the host
|
||||
return host.fileExists(f);
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); } });
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); }, redirectTargetsMap: redirectTargetsMap });
|
||||
}
|
||||
function emitBuildInfo(writeFileCallback) {
|
||||
ts.Debug.assert(!options.out && !options.outFile);
|
||||
|
||||
@ -84550,6 +84550,15 @@ var ts;
|
||||
declFileName = paths.declarationFilePath || paths.jsFilePath || file.fileName;
|
||||
}
|
||||
if (declFileName) {
|
||||
var specifier = ts.moduleSpecifiers.getModuleSpecifier(__assign(__assign({}, options), { baseUrl: options.baseUrl && ts.toPath(options.baseUrl, host.getCurrentDirectory(), host.getCanonicalFileName) }), currentSourceFile, ts.toPath(outputFilePath, host.getCurrentDirectory(), host.getCanonicalFileName), ts.toPath(declFileName, host.getCurrentDirectory(), host.getCanonicalFileName), host, host.getSourceFiles(),
|
||||
/*preferences*/ undefined, host.redirectTargetsMap);
|
||||
if (!ts.pathIsRelative(specifier)) {
|
||||
// If some compiler option/symlink/whatever allows access to the file containing the ambient module declaration
|
||||
// via a non-relative name, emit a type reference directive to that non-relative name, rather than
|
||||
// a relative path to the declaration file
|
||||
recordTypeReferenceDirectivesIfNecessary([specifier]);
|
||||
return;
|
||||
}
|
||||
var fileName = ts.getRelativePathToDirectoryOrUrl(outputFilePath, declFileName, host.getCurrentDirectory(), host.getCanonicalFileName,
|
||||
/*isAbsolutePathAnUrl*/ false);
|
||||
if (ts.startsWith(fileName, "./") && ts.hasExtension(fileName)) {
|
||||
@ -86602,6 +86611,7 @@ var ts;
|
||||
useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); },
|
||||
getProgramBuildInfo: ts.returnUndefined,
|
||||
getSourceFileFromReference: ts.returnUndefined,
|
||||
redirectTargetsMap: ts.createMultiMap()
|
||||
};
|
||||
emitFiles(ts.notImplementedResolver, emitHost,
|
||||
/*targetSourceFile*/ undefined, ts.getTransformers(config.options, customTransformers));
|
||||
@ -92029,7 +92039,7 @@ var ts;
|
||||
return false;
|
||||
// Before falling back to the host
|
||||
return host.fileExists(f);
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); } });
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); }, redirectTargetsMap: redirectTargetsMap });
|
||||
}
|
||||
function emitBuildInfo(writeFileCallback) {
|
||||
ts.Debug.assert(!options.out && !options.outFile);
|
||||
|
||||
@ -84551,6 +84551,15 @@ var ts;
|
||||
declFileName = paths.declarationFilePath || paths.jsFilePath || file.fileName;
|
||||
}
|
||||
if (declFileName) {
|
||||
var specifier = ts.moduleSpecifiers.getModuleSpecifier(__assign(__assign({}, options), { baseUrl: options.baseUrl && ts.toPath(options.baseUrl, host.getCurrentDirectory(), host.getCanonicalFileName) }), currentSourceFile, ts.toPath(outputFilePath, host.getCurrentDirectory(), host.getCanonicalFileName), ts.toPath(declFileName, host.getCurrentDirectory(), host.getCanonicalFileName), host, host.getSourceFiles(),
|
||||
/*preferences*/ undefined, host.redirectTargetsMap);
|
||||
if (!ts.pathIsRelative(specifier)) {
|
||||
// If some compiler option/symlink/whatever allows access to the file containing the ambient module declaration
|
||||
// via a non-relative name, emit a type reference directive to that non-relative name, rather than
|
||||
// a relative path to the declaration file
|
||||
recordTypeReferenceDirectivesIfNecessary([specifier]);
|
||||
return;
|
||||
}
|
||||
var fileName = ts.getRelativePathToDirectoryOrUrl(outputFilePath, declFileName, host.getCurrentDirectory(), host.getCanonicalFileName,
|
||||
/*isAbsolutePathAnUrl*/ false);
|
||||
if (ts.startsWith(fileName, "./") && ts.hasExtension(fileName)) {
|
||||
@ -86603,6 +86612,7 @@ var ts;
|
||||
useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); },
|
||||
getProgramBuildInfo: ts.returnUndefined,
|
||||
getSourceFileFromReference: ts.returnUndefined,
|
||||
redirectTargetsMap: ts.createMultiMap()
|
||||
};
|
||||
emitFiles(ts.notImplementedResolver, emitHost,
|
||||
/*targetSourceFile*/ undefined, ts.getTransformers(config.options, customTransformers));
|
||||
@ -92030,7 +92040,7 @@ var ts;
|
||||
return false;
|
||||
// Before falling back to the host
|
||||
return host.fileExists(f);
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); } });
|
||||
} }, (host.directoryExists ? { directoryExists: function (f) { return host.directoryExists(f); } } : {})), { useCaseSensitiveFileNames: function () { return host.useCaseSensitiveFileNames(); }, getProgramBuildInfo: function () { return program.getProgramBuildInfo && program.getProgramBuildInfo(); }, getSourceFileFromReference: function (file, ref) { return program.getSourceFileFromReference(file, ref); }, redirectTargetsMap: redirectTargetsMap });
|
||||
}
|
||||
function emitBuildInfo(writeFileCallback) {
|
||||
ts.Debug.assert(!options.out && !options.outFile);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user