我已经安装了DefinitelyTyped存储库中的gulp
定义以及node.d.ts,但是在Code I中我看不到intellisense。
// gulpfile.ts
/// <reference path="./typings/gulp/gulp.d.ts" />
let gulp: Gulp = require("gulp"); // Cannot find name Gulp
我做错了什么? 感谢
答案 0 :(得分:1)
/// <reference ...>
import * as gulp from 'gulp';
请务必按以下步骤操作:
"postinstall": "typings install --save"
在package.json
旁边添加typings.json {
"globalDependencies": {
"node": "github:DefinitelyTyped/DefinitelyTyped/node/node.d.ts",
"gulp": "github:DefinitelyTyped/DefinitelyTyped/gulp/gulp.d.ts"
}
}
npm install
这些步骤应该让你为它工作gulp + typings。