Am not sure why my error disappeared, but after i removed the arguments from my service constructors and threw the import directly like below it worked
import {blindMen} from '../elephant'
...
export class ElephantComponet{
blindMen:any;
constructor(){
this.blindMen = blindMen;
}
}