带节点的typescript导入

时间:2016-09-26 18:42:52

标签: javascript node.js typescript browserify

我刚开始使用前端网络开发(javascript与所有这些软件包管理器/捆绑软件一起使用),我试图使用typescript + browsify

所以我创建了一个index.ts文件并下载uniq模块(使用npm)来测试 ts 文件编译

这是我的 index.ts

/// <reference path="node_modules/uniq/uniq.d.ts" />
import {unique} from "uniq";

var data = [1, 2, 2, 3, 4, 5, 5, 5, 6];

console.log(unique(data));

uniq.d.ts

// Type definitions for uniq
// Project: https://www.npmjs.com/package/uniq
// Definitions by: Hans Windhoff <https://github.com/hansrwindhoff>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped


interface Uniq{
  <T>(ip:Array<T>): Array<T>;
}

declare var uniq :Uniq;

declare module "uniq" {
export = uniq;
}

目录结构

.
├── entry.ts
├── node_modules
│   └── uniq
│       ├── LICENSE
│       ├── package.json
│       ├── README.md
│       ├── test
│       │   └── test.js
│       ├── uniq.d.ts
│       └── uniq.ts
└── package.json

但是当我尝试编译 index.ts 时出现了这个错误:

error TS2688: Cannot find type definition file for 'uniq'.

1 个答案:

答案 0 :(得分:2)

第一

你可能错路:

/// <reference path="node_modules/uniq/uniq.d.ts" />

也许../../node_modules/uniq/uniq.d.ts。请使用tsconfig.jsonhttps://basarat.gitbooks.io/typescript/content/docs/project/tsconfig.html

,而不是像这样的britle路径

第二

根据您显示的.d.ts您的导入import {unique} from "uniq";也是错误的。它应该是import unique = require('uniq'),因为它是单个函数导出。首先修复后,您将收到有关此内容的错误消息。享受