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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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) {