From 8870f30a3d1491818f7f612c55d82600b060d32e Mon Sep 17 00:00:00 2001 From: Daniel Karp Date: Wed, 21 Sep 2016 14:33:39 -0400 Subject: [PATCH] docs(typescript): Fix name of typings config file (#2378) I believe name of the typings config file is typings.json, not typings.config. --- public/docs/ts/latest/guide/typescript-configuration.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/typescript-configuration.jade b/public/docs/ts/latest/guide/typescript-configuration.jade index 3b30797b59..0988738d79 100644 --- a/public/docs/ts/latest/guide/typescript-configuration.jade +++ b/public/docs/ts/latest/guide/typescript-configuration.jade @@ -111,7 +111,7 @@ code-example(format=""). npm run typings list :marked The following command installs or updates the typings file for the Jasmine test library from the *DefinitelyTyped* repository, - and updates the `typings.config` file so you receive it automatically the next time you install typings. + and updates the `typings.json` file so you receive it automatically the next time you install typings. code-example(format=""). npm run typings -- install dt~jasmine --save --global .l-sub-section