This is a working way how to enable typing of propTypes using JSDoc
import React, { PureComponent } from "react";
import PropTypes from "prop-types";
/**
* @extends {PureComponent<PropTypes.InferProps<SomeComponent.propTypes>>}
*/
class SomeComponent extends PureComponent {
// ...
}