安装编译 TS 的工具包

Node.js只认识JS代码,需要将TS代码转化为JS代码,才能运行。

  1. # 全局安装
  2. npm i -g typescript
  3. # 查看版本
  4. tsc -v

编译方式

手动编译 ts

  1. 编写hello.ts
  2. tsc hello.tsTS编译为JS
  3. node hello.js

问题:**vscode**禁止运行脚本?

管理员身份打开Windows PowerShell

  1. >get-ExecutionPolicy
  2. >set-ExecutionPolicy RemoteSigned
  3. > y

简化手动编译 ts

  1. # 全局安装 ts-node 包
  2. npm i -g ts-node
  3. # 运行 ts
  4. ts-node hello.ts

自动编译 ts

  1. 生成配置文件
  1. tsc --init
  1. 修改配置文件tsconfig.json
  1. "outDir": "./js"
  2. "strict": false
  1. 启动监视任务

终端 -> 运行任务 -> 显示所有任务 -> 监视tscconfg.json