What I had to do was going to the librairy files (cascadeselect.d.ts) and change this : optionGroupChildren: string | undefined; to this : optionGroupChildren: any;. And now it works as expected..
optionGroupChildren: string | undefined;
optionGroupChildren: any;