A.jsファイルにカスタムjavascriptコードがあり、intellisenseを関連付けるために、A.jsと同じフォルダーにA.intellise nse.jsファイルがあります。
A.js の内容:
var test = (typeof test === "undefined") || !test ? {} : test;
test= (function () {
return {
Version: "1.0.0"
};
}());
A.intellisense.js の内容
intellisense.annotate(window, {
"test": function () {
/// <signature>
/// <summary>The Version of the test JavaScript Lbrary</summary>
/// </signature>
}
});
テストはウィンドウレベルで定義されているので、B.js ファイル内で A.js を参照せずにテスト関数を使用できます。test() と入力すると、インテリセンスが得られません。どこが間違っているのですか。
PS : 私も _reference.js ファイルを持っていて、その中で A.js が参照されています。