VS Code 创建 TypeScript 项目

TypeScript

  1. 安装:
npm install -g typescript
  1. 版本号:
tsc -v

创建项目

//项目结构
demo/
    ├─ src/
    │    ├─ css/
    │    ├─ fonts/
    │    ├─ images/
    │    └─ index.ts
    ├─ index.html
    ├─ package.json
    └─ tsconfig.json
  1. 创建 package.json
npm init
  1. 创建 tsconfig.json
tsc --init
  1. 安装 live-server
npm install -g live-server
  1. 修改 package.json
"scripts": {
    "start": "tsc -w & live-server"
  }
  1. 启动项目
npm start

ts 编译 js

tsc xxx.ts

监控自动编译

tsc -w

你可能感兴趣的:(VS Code 创建 TypeScript 项目)