First, to make typescript tolerate parameters without declaring their type, edit the tsconfig.json
// disable this rule:
// "strict": true,
// enable this rule:
"noImplicitAny": false
Second, install the tslint npm package as a prerequisite for the tslint vs code extension
npm install -g tslint
Third, install the tslint vs code extension