I installed the editor plugin and these are the installed files:

I’m just curious as to how the compiler works and if anyone could give an overview of these files?
- 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? - Does tsc.exe use the Chakra engine?
- What is the intelligence written in? What is the lib file
for? (actually I can answer this one it’s the documentation for the
ECMAScript APIs)
tsc.js is the command-line compiler used by tsc.exe. Both typescript.js and tsc.js are largely identical but tsc.js has the command-line options parser and batch compiler needed for the command-line compile. typescript.js is just the core compiler.
In TypeScript.
It is the type description of the JavaScript runtime.