I changed line 228 of csv_importer.php:
post_type_exists($type)) || in_array($type, array('post', 'page'));
Where it says in_array($type, array('post', 'page'))
, add your custom types to that second parameter.
I.e.: in_array($type, array('post', 'page', 'book', 'article'))