Here is my solutin
function filter_wpcf7_load_js( $wpcf7_load_js ) {
// make filter magic happen here...
if ( defined( 'WPINC' ) ) {
$wpcf7_load_js = true;
}
return $wpcf7_load_js;
};
// add the filter
add_filter( 'wpcf7_load_js', 'filter_wpcf7_load_js', 999, 1 );