我有问题。在我的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
存在。
它仍然会抛出错误:
找不到名称'_'
我做错了什么?