If you have a type definition file (d.ts) for the module, you can use an import statement.
import _ = require('lodash');
If you don't have a definition file for the module, TypeScript will throw an error on compilation because it cannot find the module you are trying to import.
In this case, yo...