基本开发环境
node npm vscode cmd chrome
安装
npm install -g typescript
编译
tsc *.ts
tsconfig.json配置
{
"compilerOptions": { //编译选项
"target": "es2015",
"module": "commonjs",
"outDir": "lib"
},
"include": [ //源码位置
"src/**/*"
]
}
通过package.js编译
"scripts": {
"start": "tsc --watch", //实时监听文件变化,自动编译
"build": "tsc", //编译一次
"test": "echo \"Error: no test specified\" && exit 1"
},