For vscode to have intellisense support for frameworks like jasmine, the typing file must be referenced explicitly at the beginning of each typescript file as shown below:
/// <reference path="./node_modules/@types/jasmine/index.d.ts" />
Is it possible to globally reference all typing files in vscode so that individual references in each typescript file are not necessary?