即使引用它也找不到名称

时间:2016-08-01 11:10:45

标签: typescript lodash

我有问题。在我的app.component.ts中,我引用了以下内容:

/// <reference path="../../typings/index.d.ts" />

但是,在文件User.component.ts中,我使用了一些导入的定义:

_.find(..)

即使打字稿看到typings/index.d.ts文件,其中包含以下内容:

/// <reference path="globals/angular-protractor/index.d.ts" />
/// <reference path="globals/core-js/index.d.ts" />
/// <reference path="globals/jasmine/index.d.ts" />
/// <reference path="globals/selenium-webdriver/index.d.ts" />
/// <reference path="modules/lodash/index.d.ts" />

我已经检查过 - 是的,modules/lodash/index.d.ts存在。

它仍然会抛出错误:

  

找不到名称'_'

我做错了什么?

0 个答案:

没有答案