Is there a way to indicate in the tsconfig.json file the options noUnusedLocals and noUnusedParameters as warnings instead of errors that block the compilation?
Currently I use them in the tsconfig.json file like this :
"compilerOptions": {
"noUnusedLocals": true,
"noUnusedParameters": true
},
I tried the option :
"no-unused-variable": true,
in the tslint.json file but it doesn't detect errors like the tsc, and in visual studio code I can't see them underlined.