我尝试使用TypeScript 2.4.2版本中的lib / tsc.js文件编译示例脚本。
在Windows控制台我输入:
cscript lib\tsc.js test.ts
它出现以下错误:
lib\tsc.js(216, 31) Microsoft JScript compilation error: Expected identifier
我曾尝试在GitHub上使用最新版本的TypeScript,但它也出现了类似的错误。
示例脚本是:
function greeter(person: string) {
return "Hello, " + person;
}
WScript.Echo(greeter("World"));
我很确定这曾经适用于早期版本的TypeScript。我错过了什么吗?
请假设我无法安装Node或其他任何内容。