我手动使用tsc.exe,有没有办法让我基本上在根命名空间下传递一些Typescript文件并将其编译为单个命名空间封装的js文件?
我在想你是如何拥有一个包含root命名空间和所有子节点的.net dll。
答案 0 :(得分:1)
我在发布此内容后找到了一些链接:
TypeScript compiling as a single JS file http://www.codebelt.com/typescript/typescript-compiler-commands/
这两个对我有帮助,实际答案是:
tsc.exe --out some_file.js some_ts_file.ts some_other_ts_file.ts