TypeScript / NodeJS:未定义变量,使用单独文件的内部引用路径
TypeScript / NodeJS: variable not defined, using internal ref paths for separate files
我一直在用 node 测试 TypeScript,一切都很顺利,直到我尝试将它们分开。
我是否被迫使用模块?
我有 2 个文件,app.ts,其中包含 hellofile.tst
的引用路径
/// <reference path="hellofile.ts" />
var testme = new Hello()
console.log(testme.testMe());
和包含
的 hellofile.ts
class 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
您不必使用模块。您可以使用 --out 标志
进行编译
但是如果目标是 nodejs,强烈建议使用带有 commonjs 的外部模块:http://m.youtube.com/watch?v=KDrWLMUY0R0
我一直在用 node 测试 TypeScript,一切都很顺利,直到我尝试将它们分开。
我是否被迫使用模块?
我有 2 个文件,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
您不必使用模块。您可以使用 --out 标志
进行编译但是如果目标是 nodejs,强烈建议使用带有 commonjs 的外部模块:http://m.youtube.com/watch?v=KDrWLMUY0R0