The issue is clear :
You are using custom.model.ts into custom.form.ts
and also custom.form.ts into custom.model.ts,
This is called CircularDependencies and that is not good.
Solution :
Just remove import { CustomForm } from './custom.form'; from custom.model.ts