We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
現在、モジュール間の連携を、 内部モジュールと以下のコードのようなevalハックを用いて無理やり、ファイル間のモジュール間連携を実現しているのが現状。
module WrtGame { eval('WrtGame = _.isUndefined(window.WrtGame) ? WrtGame : window.WrtGame;'); // 内部モジュールを複数ファイルで共有するためのハック export class Map { } }
これは、tsファイルのコードがjsファイルと同様、Meteorでは無名関数に包まれてしまうのが原因である。 Meteorにおける正しいTypeScriptのファイル間モジュール間連携の方法を見つけ、整備すること。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
現在、モジュール間の連携を、 内部モジュールと以下のコードのようなevalハックを用いて無理やり、ファイル間のモジュール間連携を実現しているのが現状。
これは、tsファイルのコードがjsファイルと同様、Meteorでは無名関数に包まれてしまうのが原因である。
Meteorにおける正しいTypeScriptのファイル間モジュール間連携の方法を見つけ、整備すること。
The text was updated successfully, but these errors were encountered: