There is an option to map source columns' datatypes to target columns' datatypes as you want (look behind the 'advanced' button).
I do not remember full details now, but I remember we discussed and decided to do like this some years ago – as far as I remember because neither TIMESTAMP nor DATETIME have the same properties in MySQL and SQL Server. We concluded that TIMESTAMP would most often be most appropriate in this situation (and the way a DATETIME is used in SQL Server is often how a TIMESTAMP is used in MySQL)
Another option is to map to a string (like varchar(20)) and then ALTER TABLE after migration. DATE/TIME datatypes are tricky to handle across different database server systems, and don't expect it to be perfect in every situation without user intervention.