I am currently working on a single .ts file where I am experimenting with configuring tslint and tsconfig. To test the configuration, I intentionally added extra spaces and removed semicolons.
Despite running the command tslint filename.ts
and detecting errors in the .ts file, my VSCode is not highlighting these issues with red lines?
I used CLI to generate tslint.json and tsconfig.json files: tslint --init,tsc --init
https://i.sstatic.net/faUGr.png
However, when viewing it in Angular app, it appears as shown below:
https://i.sstatic.net/sYm0z.png
I have tried exploring the documentation for both tslint and tsconfig but unable to find how to properly configure them.
Can someone guide me on how to receive red line indicators in normal .ts files? Thanks in advance