If you want the meta value to exist and have some value other than an empty string:
'meta_query' => [
'relation' => 'AND',
[
'key' => 'some_key',
'compare' => 'EXISTS',
],
[
'key' => 'some_key',
'compare' => '!=',
'value' => ''
]
]