I have a little web app with Angular 5 and out of a sudden I am getting this strange error message in my browser console:
ncaught Error: Template parse error
I was able to resolve this with two changes.
1) I had my component in its own module. I had to import THAT specific module into the app.module. That got me half way to the solution.
2) I also had some fields whose values were generated in the component and being displayed in the form group. Once I took those out of the form group and put them in a separate div, then I was set to go.