Experience EnhancementHelp WantedSuggestion
倉庫指標
- 星標
- (108,860 顆星)
- PR 合併指標
- (PR 指標待抓取)
描述
Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: 1.68.1
- OS Version: Windows_NT x64 10.0.19044
Steps to Reproduce:
- Create a object.
/** @namespace a */
var a = {};
- Add a property to object in function (IIFE)
(function(){
/** @type {boolean} */
a.b = false;
})();
It's show any when hover a.b, not boolean. And you will not see the IntelliSense when typing a..
