我从npm安装了库 lodash ,现在我想将它导入到我的文件中:
import _ from 'lodash';
但是我收到了这个错误:
错误TS1192:模块'“lodash”'没有默认导出。
为什么我收到此错误?以及如何使用ECMAscript6的新导入语法导入非.ts文件的 node_modules ?
答案 0 :(得分:5)
以下两种方法对我有用:
使用需要:
/**
* Install package via
* $ bower install lodash --save
* Run:
* $ node test.js # after TypeScript compilation
*/
// test.ts file
/// <reference path="typings/lodash/lodash.d.ts" />
import _ = require('./bower_components/lodash/lodash.js');
console.log(_.chunk(['a', 'b', 'c', 'd'], 2));
ES6 导入:
/**
* Install package via
* $ tsd install lodash --save # to download definition file
* $ npm install lodash --save
*
* Run:
* $ node test.js # after TypeScript compilation
*/
// test.ts file
/// <reference path="typings/lodash/lodash.d.ts" />
import * as _ from 'lodash';
console.log(_.chunk(['a', 'b', 'c', 'd'], 2));
// → [['a', 'b'], ['c', 'd']]
注意:基于路径映射的模块解析计划为TypeScript 1.8(https://github.com/Microsoft/TypeScript/issues/5039)