我有很多打字稿文件a.ts和另一个打字稿文件b.ts.我如何能够将这些内容包含在内?因此,当将b.ts编译为javascript b.js时,来自a.ts的内容会自动附加到b.js。我知道,我们可以使用import" a.less'在b.less里面,所以当编译成b.css时,a.css的内容会自动包含在b.css中。打字稿有类似的语法吗?
答案 0 :(得分:2)
打字稿是否有类似的语法?
你可以使用outFile
,如果a.ts
和b.ts
在你的compilation context中。
但我强烈建议您使用模块:https://basarat.gitbooks.io/typescript/content/docs/project/modules.html
然后使用webpack编译:https://basarat.gitbooks.io/typescript/content/docs/quick/browser.html