无法在nodejs中的typescript文件中导入

时间:2014-04-16 15:12:44

标签: node.js typescript

我正在尝试在Typescript文件中导入下划线模块,但是它创建了麻烦,因为当我在节点中运行typescript模块时,它会抛出错误:

Code:    
import _ = require('underscore');

Error:
import _ = require('underscore');
^^^^^^
SyntaxError: Unexpected reserved word
    at Module._compile (module.js:439:25)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.require (module.js:364:17)
    at require (module.js:380:17)

1 个答案:

答案 0 :(得分:4)

您必须编译TypeScript文件。然后,在节点中运行生成的.js文件。