1、安装最新版本,安装到全局
npm install -g typescript
2、安装指定版本,安装指定版本到全局
npm install -g typescript@3.4.3
npm intsall -g typescript@版本号
3、卸载
npm uninstall -g typescript
4、查看安装的版本
tsc -v
5、初始化,创建 tsconfig.json 文件( Creates a tsconfig.json with the recommended settings in the working directory.)
tsc --init
6、编译项目下所有.ts文件
tsc
7、编译指定ts文件
tsc 文件名.ts
8、node js 环境执行ts
1.安装ts-node npm i ts-node -g
2.生成 package.json npm init -y
3.安装声明文件 npm i @types/node -D
4.ts-node 文件名.ts 就可以直接得到结果