[EDIT] Thanks a lot for this answer! However, as of 2018, it is outdated. Readers, have a look at the other answers.
There are several ways to import modules from npm. But if you don't get typings, tsc
will always complain that it can't find the module you are requiring (even if transpiled js is actually working).
If you do have typings and do not use a tsconfig.json
, use reference
to import the typings:
/// <reference path="path/to/typings/typings.d.ts" />
import * as _ from 'lodash`;
console.log(_.toUpper('Hello, world !'))
If you are using a tsconfig.json
file, be sure to have your typings file included (or not excluded, your choice), and make the import
like on the previous example.
In the case when there is no available typings. You have two choices: write your own on a .d.ts
file, or ignore type checking for the library.
To completely ignore the type checking (this is no the recommended way), import the library on a variable of type any
.
const _: any = require('lodash');
console.log(_.toUpper('Hello, world !'))
tsc
will complain that require
doesn't exist. Provide node
typings, or declare
it to discard the error.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…