我安装了编辑器插件,这些是已安装的文件:
我只是好奇编译器是如何工作的,如果有人能概述这些文件?
>还有两个JavaScript文件,我只期望一个,什么
他们做(一个必须是编译器)?是tsc编译器和typescript语法解析器?
> tsc.exe是否使用Chakra引擎?
>写的智力是什么?什么是lib文件
对于? (实际上我可以回答这个问题,因为它的文档是
ECMAScript API)
解决方法@H_403_20@
There are also two JavaScript files where I expected only one,what do they do (one must be the compiler)? is tsc the compiler and typescript the Syntax parser?
tsc.js是tsc.exe使用的命令行编译器. typescript.js和tsc.js大致相同,但tsc.js具有命令行编译所需的命令行选项解析器和批处理编译器. typescript.js只是核心编译器.
What is the intelligence written in?
在TypeScript中.
What is the lib file for?
它是JavaScript运行时的类型描述.
There are also two JavaScript files where I expected only one,what do they do (one must be the compiler)? is tsc the compiler and typescript the Syntax parser?
tsc.js是tsc.exe使用的命令行编译器. typescript.js和tsc.js大致相同,但tsc.js具有命令行编译所需的命令行选项解析器和批处理编译器. typescript.js只是核心编译器.
What is the intelligence written in?
在TypeScript中.
What is the lib file for?
它是JavaScript运行时的类型描述.