Skip to content

Commit b7eda58

Browse files
committed
Enable this by default for testing
1 parent aba9afa commit b7eda58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47127,7 +47127,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
4712747127
}
4712847128
}
4712947129
}
47130-
else if (resolveBareImports && !importClause) {
47130+
else if (resolveBareImports !== false && !importClause) { // TODO(jakebailey): revert after testing impact
4713147131
void resolveExternalModuleName(node, node.moduleSpecifier);
4713247132
}
4713347133
}

0 commit comments

Comments
 (0)