用 npm 安装 TypeScript

    1. npm install -g typescript

    查看安装的版本

    1. tsc -v

    新建一个 hello.ts 文件,输入:

    1. var str: string = 'hello world'

    编译一个 TypeScript 文件,在当前文件的目录下的命令行中输入:

    1. tsc hello.ts

    将会生成 hello.js。
    也可以在项目根目录输入

    1. tsc --init

    会生成一个 tsconfig.json 的配置文件。
    使用 TypeScript 编写的文件以 .ts 为后缀,用 TypeScript 写 jsx 的文件后缀名为 tsx