mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-04-12 23:36:28 -05:00
Fix incorrect comparison
This commit is contained in:
@@ -6555,7 +6555,7 @@ export interface EmitFileNames {
|
||||
export function emitFileNamesIsEqual(a: EmitFileNames | undefined, b: EmitFileNames | undefined): boolean {
|
||||
return a === b || !!a && !!b &&
|
||||
a.jsFilePath === b.jsFilePath &&
|
||||
a.sourceMapFilePath === b.jsFilePath &&
|
||||
a.sourceMapFilePath === b.sourceMapFilePath &&
|
||||
a.declarationFilePath === b.declarationFilePath &&
|
||||
a.declarationMapPath === b.declarationMapPath &&
|
||||
a.buildInfoPath === b.buildInfoPath;
|
||||
|
||||
Reference in New Issue
Block a user