Currently, I am working on a project in Angular. Within the folder that contains my help.component.ts file, I also have help.component.html and help.component.scss files. However, when I try to reference these files in my .ts file using 'templateUrl' and 'styleUrls', they are both showing up with red underlines indicating "URL does not point to a valid file". Below is an excerpt of my code:
@Component({
selector: 'app-form',
templateUrl: './help.component.html',
styleUrls: ['./help.component.scss'],
animations: [routerTransition()],
providers: [DataService]
})