+Modern debugging workflows frequently encounter scenarios where the same "original source" URL appears in multiple source maps. Determining whether these URLs refer to identical source files presents a challenge. When the optional `"sourcesContent"` field is present in both source maps, this comparison is straightforward. However, many source maps omit `"sourcesContent"` to reduce file size. In such cases, debuggers are forced to fetch the content of the original source file(s) to ascertain their identity, leading to unnecessary network requests and increased debugging overhead.
0 commit comments