I'm interested in leveraging .d.ts files for enhanced intellisense while coding in JavaScript with VScode. Take, for instance, a scenario where I have an Angular JS file called comments.js. Within comments.js, I aim to access the type definitions provided by utilities.d.ts, which exposes a namespace named "Utilities".
By typing Utilities., I anticipate that intellisense will kick in and display the available methods from utilities.d.ts.
Can this be achieved within a JavaScript application without resorting to using reference path? /// ?