Я создал новую среду разработки узлов, установил модуль typcript npm с помощью команды. npm i --save-dev -g typescript
Я создал файл app.ts app.ts
console.log("Hello World")
Я пыталсячтобы скомпилировать его с помощью
tsc --extendedDiagnostics app.ts
я получил следующий вывод
Files: 6
Lines: 24817
Nodes: 111373
Identifiers: 41046
Symbols: 27913
Types: 8269
Memory used: 78854K
Assignability cache size: 33122
Identity cache size: 2
Subtype cache size: 0
I/O Read time: 0.01s
Parse time: 0.46s
Program time: 0.48s
Bind time: 0.31s
Check time: 1.23s
transformTime time: 0.01s
commentTime time: 0.00s
I/O Write time: 0.00s
printTime time: 0.01s
Emit time: 0.02s
Total time: 2.04s
Обратите внимание, что количество файлов здесь равно 6. Но я компилирую только один файл, т.е. app.ts Может кто-тообъясните мне, что другие дополнительные файлы здесь?