-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add MobX into Typings registry #522
Comments
The package ships with typings out of the box which are picked up Op ma 29 aug. 2016 16:55 schreef Denis notifications@github.com:
|
Unfortunately in my case it doesn't work because of the following settings in "exclude": [
"node_modules",
"jspm_packages"
], MobX is installed inside |
Argh! can typings handle non ambient typings in the first place? Op ma 29 aug. 2016 17:17 schreef Denis notifications@github.com:
|
I doubt this is something that needs fixing on the MobX side of things (ambient declarations / decoupled declarations are really a downgrade of the current system, opening up a can of worms regarding maintenance, versioning etc). Would you mind checking whether these treads offers an acceptable solution / work around? microsoft/TypeScript#6012 jspm/jspm-cli#1476 |
First of all I should say that I'm a newbie regarding JSPM and TypeScript. |
Although I see your problem, I put a won't fix on this one. First, I suspect JSPM will address this issue. Secondly, maintaining such a typing is very tedious, especially since MobX provides good standardized typings by itself already. If someone from the community wants to submit typings though, he is welcome :) |
It would be very helpful to add mobx into Typings registry.
In my project I use TypeScript with JSPM. So TypeScript compiler cannot find
mobx
without typings.I know that it is possible to install mobx typings via
typings install mobx=https://npmcdn.com/mobx/lib/mobx.d.ts
(thanks to the comment in #203).But having mobx in Typings registry would be more user-friendly (I experienced some difficulties until I found #203).
The text was updated successfully, but these errors were encountered: