有没有办法将包含TypeScript的String编译为其JavaScript String等效项?
例如,在Coffeescript(和LiveScript,coco等)中,它是一个(简化的)单行:
jsCompiledCode = require(‘coffee-script’).compile(‘do – > console.log“Hello world”’,{bare:true});
可以为TypeScript实现类似的东西,最好不涉及文件系统吗?引用其他必须在编译时解决的模块是否有任何影响?
解决方法:
您可以使用TypeScript.Api nodejs包:https://npmjs.org/package/typescript.api
特别检查此功能:https://github.com/sinclairzx81/typescript.api#compile