How to make Custom Loop not crop featured images?

You can use: get_the_post_thumbnail function

 <?php echo get_the_post_thumbnail( $post_id, $size, $attr ); ?> 

In the size paramenters you can pass a two dimensional array of height, and width, or use ‘full’ to get the full image.