4

因此,过去几天我一直在尝试使用 TypeScript,但在为外部模块安装定义时遇到了麻烦。

如果我这样使用,我没有问题tsd

tsd install express

但是,它似乎已tsd被弃用,我应该使用typings.
所以我尝试运行这个命令:

typings install --ambient express

这是输出:

typings INFO reference Stripped reference "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/7de6c3dd94feaeb21f20054b9f30d5dabc5efabd/serve-static/serve-static.d.ts" during installation from "express"

typings INFO reference Stripped reference "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/7de6c3dd94feaeb21f20054b9f30d5dabc5efabd/express-serve-static-core/express-serve-static-core.d.ts" during installation from "express"

express
└── (No dependencies)

然后我必须手动安装剥离的引用,当我这样做时,编译时仍然会出错,tsc但是当我使用tsd所有引用时,我会在编译过程中得到任何错误。

我只想尽可能简单地安装定义。
使用安全tsd吗?或者我将来可能会遇到一些问题?

为什么不typings安装它们?
想象一下,如果你运行npm install express,然后你得到一个依赖项列表,你必须递归地安装所有依赖项。

每个模块我应该花多少时间来安装定义文件?

我在网上找不到答案。其他人如何处理这个问题?
另外,如果某些模块没有可用的定义,我该怎么办?

4

1 回答 1

1

正如@BrunoLM 在评论中指出的那样,随着 TypeScript 2.0 的发布,这是现在安装声明文件的方式:

npm i @types/express

参考:

于 2017-01-13T12:11:46.770 回答