Skip to content

Commit 93b8df7

Browse files
vladimamhegazy
authored andcommitted
Addresses microsoft#11348: Could the tsserver add process.noAsar = true; (microsoft#11351) (microsoft#11360)
1 parent e38f8c9 commit 93b8df7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/server/server.ts

+2
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,8 @@ namespace ts.server {
523523
process.on("uncaughtException", function (err: Error) {
524524
ioSession.logError(err, "unknown");
525525
});
526+
// See https://github.com/Microsoft/TypeScript/issues/11348
527+
(process as any).noAsar = true;
526528
// Start listening
527529
ioSession.listen();
528530
}

0 commit comments

Comments
 (0)