我一直在用节点测试TypeScript,一直都很顺利,直到我尝试将它们分开。
我被迫使用模块吗?
我有两个文件app.ts,它们有一个hellofile.tst的参考路径
/// <reference path="hellofile.ts" />
var testme = new Hello()
console.log(testme.testMe());
和包含
的hellofile.tsclass Hello {
testMe():string {
return "hello";
}
}
现在运行该程序(我正在使用webstorm),我收到以下错误。
/usr/local/bin/node app.js
/
Users/tst/WebstormProjects/NodeJsWithTypescript/app.js:2
var testme = new Hello();
^
ReferenceError: Hello is not defined
at Object.<anonymous> (/Users/tst/WebstormProjects/NodeJsWithTypescript/app.js:2:18)
at Module._compile (module.js:456:26)
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 Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:906:3
Process finished with exit code 8
答案 0 :(得分:2)
您不必使用模块。您可以使用--out标志
进行编译但如果定位nodejs:http://m.youtube.com/watch?v=KDrWLMUY0R0
,强烈建议使用带有commonjs的外部模块