mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
Pick up latest TS for building VS Code (#158420)
This commit is contained in:
@@ -207,8 +207,8 @@ export function loadSourcemaps(): NodeJS.ReadWriteStream {
|
||||
const contents = (<Buffer>f.contents).toString('utf8');
|
||||
|
||||
const reg = /\/\/# sourceMappingURL=(.*)$/g;
|
||||
let lastMatch: RegExpMatchArray | null = null;
|
||||
let match: RegExpMatchArray | null = null;
|
||||
let lastMatch: RegExpExecArray | null = null;
|
||||
let match: RegExpExecArray | null = null;
|
||||
|
||||
while (match = reg.exec(contents)) {
|
||||
lastMatch = match;
|
||||
|
||||
Reference in New Issue
Block a user