WebStorm TSLint not reporting missing imports

I have TSLint enabled in my Webstorm configuration and TSLint package installed but it still doesn't highlight the missing imports in red:

Here the component called SomethingRandom doesn't exist so I would like it to be highlighted in red:

What am I missing here?

 

 

0

There are no TSLint rules for checking this AFAIK; but you should see the errors from TypeScript compiler service (TS2304: Cannot find name 'SomethingRandom'.)

0

请先登录再写评论。