문제

It seems like R# only looks at the files referenced at the top of the current file, and so is not showing IntelliSense information that would have appeared in bare-bones Visual Studio. Maybe I'm missing something, though, and it's a configuration option somewhere?

도움이 되었습니까?

해결책

My understanding is that Resharper (8.0.1 as of this answer) does not pay any attention to the _references.js file. It analyzes the project for any/all available javascript files and provides Intellisense accordingly. One important thing you lose with R# compared to VS default functionality is the ability to reference remote js files, eg:

///<reference path="http://whatever.com/your.js" />

will not work. Currently it's a known bug with no scheduled fix.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top