1. # 安装typescript
    2. npm install -g typescript
    3. # 查看安装结果tsc ===> typescript compiler
    4. tsc -v

    image.png

    新建一个test.ts文件

    1. const hello = (name:string) => {
    2. return `Hello ${name}`;
    3. };
    4. hello("Felix");

    运行tsc test.js即可生成对应的test.js文件
    image.png