It seems that my colleague already replied to that question here Adding minDate,MaxDate for date picker with the configuration of
disableDayFn(date) {
// Disable Sunday and Saturday
return date.getDay() === 0 || date.getDay() === 6;
},
minDate: new Date(2000, 0, 1),
maxDate: new Date(2009, 11, 31),