- 初始化 npm ini -y
- 安装 Typescript
npm i typescript -D
- 生成 tsconfig.json 文件, 终端执行 tsc
- 安装 ts-node
npm install ts-node -D
- 安装 nodemon
npm install nodemon -D "start": "nodemon --watch src/ -e ts --exec ts-node src/index.ts"
- 安装 Parcel 浏览器自动运行 ts
npm install parcel-bundler -D
- 新建 index.html
// index.html 直接引入 ts
<script src="./src/index.ts"></script>
- package.json 添加指令
"startparcel": "parcel ./index.html",