Made it work:
$posts = get_posts( array(
'post_type' => array( 'event', 'post'),
'posts_per_page' => 9,
'orderby' => 'date',
'order' => 'DESC',
'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => array('featured', 'featured-de'),
),
array(
'taxonomy' => 'event-tags',
'field' => 'slug',
'terms' => array('featured'),
),
)
) );