Skip to content

Commit c833f3b

Browse files
committed
Fix incorrect condition
1 parent 0ca1973 commit c833f3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/program.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2777,7 +2777,7 @@ export function createProgram(rootNamesOrOptions: readonly string[] | CreateProg
27772777
return true;
27782778
}
27792779

2780-
if (!options.noLib) {
2780+
if (options.noLib) {
27812781
return false;
27822782
}
27832783

0 commit comments

Comments
 (0)