- Why do I need this?
- I'm getting a bunch of Duplicate Identifiers
- My global dependencie(s) are not installed
- How do I use Typings with version control?
- How do I write typings definitions?
- How to configure typings?
- What are global dependencies?
- Should I use the
typings
field inpackage.json
? - Where do the type definitions install?
- Types of type defintions
Have a different question? Open an issue or pull request and we can add it here!
Typings consumes external module definitions and wraps them up into namespaced, global declarations. Curious as to what this means? Read this.
The idea is, with external module definitions, you can't implement any leaky information that will break other consumers. Once you omit all the leaky details, you can properly version dependencies - though it requires some hacky namespacing from Typings to work with the TypeScript compiler.
Type definitions for Typings can also come from anywhere on the internet, allowing new consumers of definitions that were previously restricted to a subset of tooling to distribute type definitions.
When you install typings, the default resolution is using "main" and is placed in the typings/
directory. The file, typings/index.d.ts
, is used as a bundle to reference all typings installed in the project. Typings also supports "browser" resolution logic, and can also emit both at once. See "where do the type definitions install?" on how to emit "browser" definitions.
- If you are using
files
intsconfig.json
, then add the one you want:
{
"files": [
"typings/index.d.ts"
]
}
- If you are not using
tsconfig.json
, add as a reference to the top of TypeScript files:
/// <reference path="../typings/index.d.ts" />
During installation, all references (E.g. /// <reference path="..." />
) are stripped. They are stripped because of their ambiguous nature - it can not be determined if the reference should be included within the source or is a dependency. 90% of the time, it's better to strip. If the reference is something you require for the project to work, you can always install the references as dependencies manually.
Normally, you won't need to commit your typings/
folder, unless you have issues accessing typings (E.g. CI has a firewall) or it aligns with your teams policy.
If you're using NPM in your project with TypeScript, you might be using NPM scripts. To integrate Typings into this flow, I recommend you run it as part of the prepublish
or build
steps. For example:
{
"scripts": {
"build": "rm -rf dist && tsc",
"prepublish": "typings install && npm run build"
}
}
P.S. Remember to npm install typings --save-dev
, so it'll use the local copy in scripts.
If you're using another configuration, run typings install
before you build. This installs the type definitions in typings.json
before the TypeScript compiler runs.
Writing a type definition is as simple as creating a new package. Start by creating a new typings.json
file, and add dependencies as normal. When you publish to GitHub, locally, alongside your package (NPM or Bower) or even to your own website, someone else can reference it and use it.
The formal interface is available in typings/core
.
You can also use generator-typings
to prepare the plumbing work for you.
Typings supports configuration using rc
. The config options can be set using CLI arguments, environment variables prefixed with typings_
or a .typingsrc
file.
The formal interface is available in typings/core
.
Global dependencies are type definitions that are global or otherwise provide information about the environment. Some examples of "environment" dependencies are Node.js, Browserify, window
and even Array.prototype.map
. These are globals that exist at runtime, you do not "require" them. If your package exposes a module and/or global dependencies, it's recommended you expose a way to install the global definitions (explain installation in the docs, for instance).
If you're a module author, absolutely!
However, it can't be used properly if any of your exposed API surface (the .d.ts
files) have dependencies that come from typings
.
In that case, you can rely on typings.json
to include typings for your dependencies so that your user can use typings install npm:<your package>
to install your typings.
Also, if you are using the files
field in package.json
to control which files will be available, remember to include typings.json
.
Typings are compiled and written into the typings/
directory alongside typings.json
(by default). The structure looks like this:
typings/{globals,modules}/<dependency>/index.d.ts
typings/index.d.ts
To change the output directory or specify a different output, you can use the resolution
feature in typings.json
:
{
"resolution": "src/typings"
}
Or to get both "main" and "browser" typings, a la Typings 0.x
:
{
"resolution": {
"main": "typings/main",
"browser": "typings/browser"
}
}
There are two major types of type definitions - external modules and global definitions. Typings can install both. It supports modules by default, and also supports global definitions using the --global
flag.
An module definition is considered "external" if it has an import
or export
declaration at the top-level. Everything else can be considered "global". In the past, without tooling such as Typings, we've relied on writing global definitions to define modules using the declare module '...'
syntax. With Typings, it will end up the same (wrapped in declare module '...'
), but the Typings tool is doing the wrapping so it can manage the dependency tree without namespace conflicts and ensure nothing is leaking into the global namespace (unless it's --global
, that's confirming to Typings you're OK with it polluting the global namespace).