提示错误:Parameter 'a' implicitly has an 'any' type.
处理方式:
编辑 tsconfig.json文件新增("noImplicitAny": false)
// disable this rule:
// "strict": true,
// enable this rule:
"noImplicitAny": false
其次,安装tslint npm软件包作为tslint vs代码扩展的前提条件
npm install -g tslint