-
Notifications
You must be signed in to change notification settings - Fork 23
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
[WIP] Set up transition to TypeScript #98
base: master
Are you sure you want to change the base?
Conversation
package.js
Outdated
@@ -46,6 +46,8 @@ Package.onUse(function (api) { | |||
|
|||
// Non-core packages | |||
api.use("aldeed:[email protected]"); | |||
// Should be replaced with straight up built-in 'typescript' in Meteor 1.8.2 | |||
api.use("adornis:[email protected]"); |
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.
Note that this is a temporary package someone built to maintain the abandoned barbatus:typescript
, which is in turn deprecated by first-class TypeScript support in Meteor 1.8.2.
So it's not clear if we'd need this at all, depending on the Meteor version we're using.
@ejolly here's what I'm stuck on, that perhaps you can help with:
I'm currently getting the issues reported here: Adornis/typescript#20 This is a WIP branch so if TS is getting built correctly you will see other errors. But right now I can't even get the TS files to get processed at all, so maybe you can take a look and see if I'm doing something stupid. N.B. the history of TS plugins in Meteor:
|
Seems like having a |
@mitar I haven't worked with Meteor for a while and trying to update this package to TypeScript seems like a huge pain. I think you might easily know the answer to this question:
|
Sorry, I am not using TypeScript nor have I tried using it. But I read that with the upcoming 1.8.2 there should be better official support. But I do not know much about that. Maybe join this Slack and ask for help there. I have seen people discussing it there. |
8e288f4
to
c7e4b4f
Compare
Building on decaffeination for TS conversion.