You should set the validator on the field imperatively vs declaratively.
Declaratively (your current code):
const description = new FormControl('', Validators.required);
Imperatively:
const description = new FormControl('');
if (someCondition) {
description.setValidators(Validators.required);
}