-
Notifications
You must be signed in to change notification settings - Fork 26
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
Update to Typescript 1.8 #4
Labels
Comments
Thank you for the suggestions. Will update it when time permits. |
yeah, I may do; I need a linq solution and I prefer your approach over others (working on-top of an iterator). |
+1 for update. |
I am working on it. Stay tuned... |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I quite like the look of this project; but it looks like it needs updating.
For example, with the latest TypeScript you can let the compiler deal with generating the definitions.
You can also use the "typings" field in
package.json
(point it to the typings definition), that way when people install your module via npm, typescript and IDE's can automatically pick up the typings without fanfare.Should also have a dist folder containing the typescript compiled, at least, for system and commonjs module formats (with package.json pointing to the commonjs one. That way you can support node.js apps and browser-based apps (that use module loaders).
The text was updated successfully, but these errors were encountered: