Hi Ryan,
I’m afraid that isn’t supported out of the box – but it’s certainly possible to achieve with a fairly straightforward customization.
A great starting point if you haven’t already read it is our Themer’s Guide which explains how to safely override and customize our templates.
In a custom copy of month/content.php for instance, just after this line:
<?php tribe_get_template_part( 'month/loop', 'grid' ) ?>
You might add a custom function of your own which loads and displays, list style, all events in the current month. A function like tribe_get_events() would be useful in such a case, ie:
$event_list = tribe_get_events( array(
'eventDisplay' => 'custom',
'start_date' => $start_of_month,
'end_date' => $end_of_month
) );
You can then cycle through $event_list and display each entry in a list. To determine the start and end of the month you will of course at least need to know which date has been requested, and this can conveniently be obtained via the tribe_get_month_view_date() function.
I hope that helps 🙂