Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
什么是自动缩小和合并我所有生成的 JavaScript 的最佳方法。我使用 Visual Studio 来开发我的应用程序。我有创建脚本并使用 jsmin 的想法。但是如何替换我的主要 index.html 中的引用?
问候
您可以--out yoursinglefile.js在 tsc 上使用参数。这将为您的所有打字稿文件提供一个合并的 JS 文件。例如:
--out yoursinglefile.js
tsc a.ts b.ts --out merged.js
接下来,您可以使用 jsmin 或 google 闭包或其他任何方法来缩小此文件:)