I have an environment variable:
envVar = "c:\myFolder\ManyTypescriptFiles"
How can I include a file in this directory to my current Typescript file ? Something like this. But this doesn't work.
// Include TS files
///<reference path="$(envVar)\targetTypescript.ts"/>
.
.
// Use features of targetTypescript.ts with intellisense support here....
.
.