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.
TypeScript 在其“bin”文件夹中带有 3 个 JavaScript 编译文件:
我猜其中之一应该是“TypeScript 语言服务”,但另一个是什么?
typescript.js是一些随机内部工具使用的东西。它没有任何真正的面向外部的目的,尽管例如您可以使用它来构建类似于 TypeScript Playground 的东西。
typescript.js
tsc.js是typescript.js加上命令行前端。
tsc.js
typescriptServices.jstypescript.js加上语言服务(例如用于提供 Intellisense 功能)
typescriptServices.js
typescriptServices 也可用于在运行中、在节点中或在浏览器中转译 TS 文件。