typescript开发环境

安装编译工具

1
2
3
4
5
6
7
8
9
10
"scripts": {
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\"",
"lite": "lite-server",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"devDependencies": {
"concurrently": "^5.0.0",
"lite-server": "^2.5.4"
}