You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Debug.assert(fileExtensionIsOneOf(firstDts.name,[Extension.Dts,Extension.Dmts,Extension.Dcts]),"File extension for signature expected to be dts",()=>`Found: ${getAnyExtensionFromPath(firstDts.name)} for ${firstDts.name}:: All output files: ${JSON.stringify(emitOutput.outputFiles.map(f=>f.name))}`);
437
+
Debug.assert(isDeclarationFileName(firstDts.name),"File extension for signature expected to be dts",()=>`Found: ${getAnyExtensionFromPath(firstDts.name)} for ${firstDts.name}:: All output files: ${JSON.stringify(emitOutput.outputFiles.map(f=>f.name))}`);
Copy file name to clipboardExpand all lines: src/compiler/types.ts
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3862,6 +3862,7 @@ namespace ts {
3862
3862
writeByteOrderMark: boolean,
3863
3863
onError?: (message: string)=>void,
3864
3864
sourceFiles?: readonlySourceFile[],
3865
+
sourceMapUrlPos?: number,
3865
3866
)=>void;
3866
3867
3867
3868
exportclassOperationCanceledException{}
@@ -4067,6 +4068,8 @@ namespace ts {
4067
4068
* This implementation handles file exists to be true if file is source of project reference redirect when program is created using useSourceOfProjectReferenceRedirect
0 commit comments