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 文件,我预计只有一个,它们是做什么用的(一个必须是编译器)?tsc 是编译器,typescript 是语法解析器吗?
tsc.js 是 tsc.exe 使用的命令行编译器。typescript.js 和 tsc.js 基本相同,但 tsc.js 具有命令行编译所需的命令行选项解析器和批处理编译器。typescript.js 只是核心编译器。
情报是用什么写的?
在打字稿中。
lib文件是干什么用的?
它是 JavaScript 运行时的类型描述。