I am becoming familiar with Typescript and typings but it is not yet very clear how to tell Typescript where to find typings (or better... how to tell Types
Typescript where to find typings
Its all about the compilation context. (more). If a file makes it into the context then it is analyzed.
files
filesGlob
and you are using something that understands filesGlob (e.g. atom-typescript, alm, grunt-ts) <reference path=
) by a file that already made it into the compilation contextimport foo = require('./foo')
etc) but a file that already made it into the compilation context. lib
file (e.g. lib.d.ts)Etc.
Additionally file might be global or a module (more).