1. 全局安装 ts:**npm i -g typescript**
    2. 当你全局安装 ts 之后,就可以在任意位置使用 tsc 命令了
    3. tsc 的全称为 typescript compiler,它是 ts 的编译器
    4. tsc 的作用是将我们写的 ts 代码给转换为 js 代码
    5. 检查 tsc 的版本:**tsc -v**

    image.png

    1. 使用 tsc 将 xxx.ts 编译为 xxx.js:**tsc xxx.ts**
    2. demo 打印 hello world

    1.ts 文件内容如下:

    1. const hello: string = "hello world"
    2. console.log(hello)

    其中 :string 是 ts 中的语法,后续会介绍。

    image.png

    image.png

    编译后得到的 1.js 的内容如下:

    1. var hello = "hello world";
    2. console.log(hello);
    1. 使用 **tsc** 命令,可以同时编译多个文件,比如:**tsc file1.ts file2.ts file3.ts**
    2. 常用的 tsc 编译参数
      1. --help 显示帮助信息
      2. --module 载入扩展模块
      3. --target 设置 ECMA 版本
      4. --declaration 额外生成一个 .d.ts 扩展名的类型声明文件
      5. --removeComments 删除文件中的注释
      6. --out 编译多个文件并合并到一个输出的文件
      7. --sourcemap 生成一个 sourcemap (.map) 文件
      8. --module noImplicitAny 在表达式和声明上有隐含的 any 类型时报错
      9. --watch 在监视模式下运行编译器。会监视输出文件,在它们改变时重新编译