VS 2015 vs 2017 javascript intellisense (d3.js)

I tested Javascript Intellisense in both Visual Studio 2015 Community and Visual Studio 2017 Enterprise. The first of them is not context-sensitive and does not contain a description of methods or arguments.

As an example, the following Intellisense offer is only offered in 2017 (see also screenshots):

<!DOCTYPE html>
<html>
<body>
    <script src="Scripts/d3.js"></script>
    <script>
        d3.line
    </script>
</body>
</html>
Run codeHide result

VS 2017 js intellisense works

VS 2015 js intellisense not working

I work for a company where we have VS2015 for other reasons. Any workaround is appreciated.

+4
source share

Source: https://habr.com/ru/post/1676314/


All Articles