Marius Schulz
Marius Schulz
Front End Engineer

Acquiring Type Declaration Files in TypeScript

In TypeScript 2.0, it has become significantly easier to acquire type information for JavaScript libraries. There's no longer a need for additional tools such as typings or tsd. Instead, type declaration packages are directly available on npm.

Egghead lesson: Install TypeScript declarations from

#Installing Type Declaration Packages from npm

Let's assume you want to use Lodash in one of your TypeScript projects:

npm install --save lodash

After running this command, Lodash is installed into the node_modules folder and is also listed as a dependency within your project's package.json file. However, there's no type information available for TypeScript because Lodash is written in JavaScript and doesn't ship with type declaration files.

Using npm again, you can now install the @types/lodash package which contains the corresponding type declarations that TypeScript needs:

npm install --save @types/lodash

Note how the type declaration package is named after the original npm package, prefixed with @types/. Most packages should follow this convention, but you can always fall back to Type Search to find the name of the type declaration package for a given library.

The benefit of using npm for managing type information is that type declaration packages will be listed in your package.json alongside your other dependencies. In addition, they can be properly versioned, just like any other npm package. Plus, you only need a single package manager, npm, that is set up already anyway.

#Where Do the Type Declaration Files Go?

Like any other npm package, the type declaration packages are installed in the node_modules folder. Within it, there's a @types folder which contains all typings. In the above example, it'll contain a lodash folder, within which you'll find the index.d.ts file with all the Lodash type information:

@types folder

The TypeScript compiler understands this convention and will pick up type declarations within the @types folder automatically. There's no need to update the tsconfig.json or any other configuration file.

#Who Creates the Type Declaration Packages?

Behind the scenes, the type declaration packages are automatically created by the types-publisher service. It publishes the contents of the DefinitelyTyped repository to npm. That way, typings contributed to DefinitelyTyped end up on npm, ready for consumption.

This article and 44 others are part of the TypeScript Evolution series. Have a look!