If I use the concise jsdoc syntax (all on one line):
/** description of prop */
foo: React.PropTypes.any
I end up with "description":"" in my output.
Changing it to
/**
* description of prop
*/
or even
/**
* description of prop */
works correctly ("description":"description of prop").