你可以使用transpileModule()
TypeScript 自带的方法。
$ npm install typescript
// compile.ts
import * as ts from "typescript";
function tsCompile(source: string, options: ts.TranspileOptions = null): string {
// Default options -- you could also perform a merge, or use the project tsconfig.json
if (null === options) {
options = { compilerOptions: { module: ts.ModuleKind.CommonJS }};
}
return ts.transpileModule(source, options).outputText;
}
// Make sure it works
const source = "let foo: string = 'bar'";
let result = tsCompile(source);
console.log(result); // var foo = 'bar';
编译时,您需要将 tsconfigmoduleResolution
设置为"Node"
.
这将编译/执行上面的示例文件。
$ tsc compile.ts --moduleResolution Node && node compile.js
还有一些文档。