zalmoxisus / mobx-remotedev

MobX DevTools extension
MIT License
327 stars 40 forks source link

Not play well with `TSyringe` #52

Open thanhchungbtc opened 4 years ago

thanhchungbtc commented 4 years ago

I use tsyringe for dependency injection but as soon as I add the remotedev, it stops compiling.

@remotedev()
@injectable()
class MyStore {
}

Also try but no luck

@injectable()
@remotedev()
class MyStore {
}