我有一个用 TypeScript 编写的本地节点包,我想在我的实际项目中使用它。使用 npm,我可以像这样安装本地包:
$ npm install --save /path/to/package
或者:
$ npm install --save /path/to/package.tar.gz
这会在 node_modules 目录中安装所需的 .js 文件。该包中还有一个生成的 .d.ts 文件,我想将其安装到我的项目中(自动将其链接到 typings/tsd.d.ts)。但是使用下面的命令没有效果:
$ tsd install /path/to/package/package.d.ts --save
它说>> zero results
。那么,在不需要存储库的情况下安装本地定义文件的方法是什么?
更新:
我可以简单地将我的 d.ts 文件复制到类型目录和我的文本编辑器(对我来说它是带有 TypeScript 插件的 Sublime Text)它能够找到声明。目录布局是这样的:
/my-project/
/typings/
tsd.d.ts - auto-generated by `tsd install`
node/ - I've installed the node definitions
my-package.d.ts - copied or symlinked file
my-project.ts - I'm working here
module.exports
但是,在(exports = function...
在 TypeScript 中)导出唯一的函数时,我遇到了一个问题。在这种情况下,导出的函数有点“匿名”,甚至没有在 d.ts 文件中命名,所以我需要手动编辑它。
我的测试用例:
'my-package' 提供单一功能,通常作为 'myPackage' 导入:
export = function myPackage(a: string, b: string) { return a + ' ' + b; };
declaration
true
在 tsconfig.json中设置为,因此该tsc
命令生成了一个 my-package.d.ts 文件:
declare var _default: (a: string, b: string) => string;
export = _default;
我的包应该在我的项目中这样使用:
import myPackage = require('my-package');
myPackage('foo', 'bar');
但是, tsc 找不到myPackage
,即使my-package.d.ts
已复制到类型文件夹中。我需要编辑该文件,使其看起来像这样:
declare var myPackage: (a: string, b: string) => string;
//export = _default; - not needed
甚至更好地正常运行require()
:
declare module 'my-package' /* this is the string passed to require() */ {
export = function(a: string, b: string): string;
}