Victor LEFEBVRE

Results 141 comments of Victor LEFEBVRE

> Hey, > > good work. The Plugin Type can be reduced a little and the code styles need to be fixed: > > ``` > npm run prettier:fix >...

Also about the `enumerable: true` mentionned here https://github.com/owja/ioc/pull/58#issuecomment-1189520440 what do you think ?

Then everything should be ready to go 😉

Now the arguments can be passed with `wire`, the `inject` decorator. I had to change the array of symbols (`NOCACHE` & `NOPLUGINS`) to a real array instead of a deconstructed...

I'm also working on another pr to hopefully add some documentation, reduce build size, and add a little bit more typesafety Once this PR (#58) is done I'd come back...

So sad we can't disable tasks on draft PRs

for now typesafety is ensured by the user because it's the only solution I found for now that doesn't imply huge modifications ```ts class A { constructor(public age: number) {...

tests are fixed but coverage isn't 100% due to the new typeguard, I'll fix this soon 😉

For now this is the best I can do for typesafety : - a typeguard that asserts the new type but - doesn't work with object - doesn't work when...

> I think `token()` should know the arguments because it should be the only source of the type of the service. If thats true than only a factory which has...