Mark binder as pure to tree shake in typingsInstaller (#53107)

This commit is contained in:
Jake Bailey
2023-03-06 12:06:55 -08:00
committed by GitHub
parent 9c7f43dfd8
commit 79ef86fcac

View File

@@ -488,7 +488,7 @@ function initFlowNode<T extends FlowNode>(node: T) {
return node;
}
const binder = createBinder();
const binder = /* @__PURE__ */ createBinder();
/** @internal */
export function bindSourceFile(file: SourceFile, options: CompilerOptions) {