Skip to content
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

Meteor.jsにおけるTypeScriptのモジュール間の正しい連携方法を見つけ、整備する #1

Open
emadurandal opened this issue Apr 11, 2015 · 0 comments

Comments

@emadurandal
Copy link
Member

現在、モジュール間の連携を、 内部モジュールと以下のコードのようなevalハックを用いて無理やり、ファイル間のモジュール間連携を実現しているのが現状。

module WrtGame {
  eval('WrtGame = _.isUndefined(window.WrtGame) ? WrtGame : window.WrtGame;'); // 内部モジュールを複数ファイルで共有するためのハック
  export class Map {

  }
}

これは、tsファイルのコードがjsファイルと同様、Meteorでは無名関数に包まれてしまうのが原因である。
Meteorにおける正しいTypeScriptのファイル間モジュール間連携の方法を見つけ、整備すること。

@emadurandal emadurandal modified the milestone: Rails版と同等の機能を実装 Apr 11, 2015
@emadurandal emadurandal added the 5 label Apr 11, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant