-
Notifications
You must be signed in to change notification settings - Fork 44
Fix #35 #37
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
Fix #35 #37
Conversation
- type assertion is necessary to make TS 2.5 happy
1 similar comment
So they did fix the #24 ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a small change, thank you so much!
import DefaultAlias, { Specifier1 } from 'namedImport'; | ||
import { default as __DefaultAlias, Specifier1 as __Specifier1 } from 'namedImport'; | ||
import __DefaultAlias, { Specifier1 as __Specifier1 } from 'namedImport'; | ||
import * as __namespaceImport from 'namespace'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a cosmetical thing: please enter a new line :-)
"lodash": "^4.17.4", | ||
"tslib": "^1.7.1", | ||
"typescript": "2.4.2" | ||
"typescript": "^2.5.3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question: so they did fix the problem with the typed declaration in #24 ?
will upgrade the windows testing part anyway
@buehler Thanks, I just looked at your review questions, but seems like it's all resolved and merged. Cheers! |
Yea I did not know appveyor, so I just improved it after the merge ;-) I'm going to add appveyor to typescript hero as well. This will be a good thing :-) |
Upgrading to TypeScript 2.5 fixes the issue where identifiers starting with two underscores would have a third added. All other tests still pass.
Fixes #35 and buehler/typescript-hero#320.