From cc60bcae202b7750d81f75737093e19b606970a9 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Sun, 5 Mar 2023 23:14:29 -0800 Subject: [PATCH] Mark binder as pure to tree shake in typingsInstaller --- src/compiler/binder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/binder.ts b/src/compiler/binder.ts index 78bf9e1f3a682..3c0f714ede09b 100644 --- a/src/compiler/binder.ts +++ b/src/compiler/binder.ts @@ -488,7 +488,7 @@ function initFlowNode(node: T) { return node; } -const binder = createBinder(); +const binder = /* @__PURE__ */ createBinder(); /** @internal */ export function bindSourceFile(file: SourceFile, options: CompilerOptions) {