Visual Studio reference another JS and enable it for IntelliSense

Costas

Administrator
Staff member
https://visualstudiomagazine.com/blogs/tool-tracker/2018/07/use-javascript-code.aspx

A typical reference to another JavaScript file (placed at the top of the file you're entering code into) looks like this:
JavaScript:
/// <reference path="Utilities.js" />
 
Top