[使用tsc命令编译打字稿代码时的额外文件

问题描述 投票:0回答:1

我创建了一个新的节点开发环境,安装了打字稿npm模块。

我创建了一个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有人可以解释一下这里还有其他文件吗?

我创建了一个新的节点开发环境,安装了打字稿npm模块。我创建了一个app.ts文件app.ts console.log(“ Hello World”),我尝试使用tsc --extendedDiagnostics ...

typescript tsc tsconfig
1个回答
0
投票

一个疯狂的猜测,但是我想说这个文件的数量不仅包括您的.ts,还包括默认的.d.ts库。

© www.soinside.com 2019 - 2024. All rights reserved.