记录基本的typescript
安装过程。
1、安装
查看最新的版本号
npm show typescript
去npm
服务器读取包最新的信息:
npm install -g typescript
使用tsc -v
查看版本号
使用npm bin -g
查看安装目录
2、使用tsc index.ts
就可以将ts
文件编译成js
文件。
官方在线实练地址 https://www.tslang.cn/play/index.html
3、可以进行编译到指定文件夹下
tsc --outDir ../dist 001.ts
4、增加tsconfig.json
文件
tsc --init
在生成到一堆参数中,我们需要修改
原来 | 新 |
---|---|
// "outDir": "./" | "outDir": "./dist" |
// "rootDir": "./" | "rootDir": "./src" |
rootDir
源代码所在的文件夹
有了tsconfig.json
文件,在控制台就可以直接敲tsc
需要进行动态侦测tsc -w