什么是打字稿? 使用NodeJS引擎 安装Typescript编译器: npm i -g typescript ts-node typescript npm i -g typescript ts-node ts-node index.ts结合了这两个命令tsc index.ts和node index.js ( tsc是打字稿编译器) 构建过程(编译) tsc index.ts :默认情况下,tsc将构建一个index.js并将其放在根目录中。 要更改目录,我们需要在T​​ypescript配置文件中进行更改 tsc --init :为项目创建一个tsconfig.json文件。 在tsc