How to Disable TypeScript & ESLint Checking Red Errors Lines in Visual Studio Code Using Extension
0 views
Jun 7, 2025
Get the full source code of the application here: Official Website: https://freemediatools.com
View Video Transcript
0:02
uh hello guys uh welcome to this live
0:04
stream so in this live stream I will
0:06
show you a very simple tutorial on how
0:08
to disable the TypeScript errors or
0:11
ESLint errors inside your VS code so VS
0:14
code as you all know it's a very popular
0:16
uh coding environment where you can
0:18
actually code so sometimes these red
0:20
errors comes specifically while you code
0:23
TypeScript as you can see inside this
0:25
TypeScript file here
0:27
main.ts so this is actually the compiler
0:30
errors which comes and it appears as red
0:33
lines side by side in VS code so if you
0:36
want to disable the all the TypeScript
0:39
errors there is extension that you can
0:42
install as you can see uh this
0:44
TypeScript is showing me this error that
0:46
this uh type number is not assignable to
0:49
type string these kind of errors which
0:51
comes right here and it appears like red
0:54
lines if you want to disable all these
0:56
errors for some reason you can actually
0:59
install a extension so right here simply
1:02
go to the extensions tab and here you
1:04
will simply need to type for this
1:06
extension which is just type in the
1:08
search bar which is
1:11
disable TS
1:13
errors so this is a fairly new extension
1:16
so this is actually the icon of the
1:19
extension developed by this person Zado
1:22
and it basically serves the purpose of
1:25
having complete control over your
1:27
TypeScript errors inside VS code so it's
1:30
installed by 605 people so simply click
1:33
the install button and after that you
1:35
install this extension you just need to
1:38
go to your user settings file and just
1:42
set this property to true and there's a
1:46
shortcut here which you can go into the
1:48
user setting which
1:52
is user setting file so this will you
1:56
can even go to preferences and then open
1:58
user settings file shortcut is control
2:02
shiftp and then open this
2:04
file and I already added this so you
2:08
just need to add this by default it will
2:11
set to
2:12
false so if you basically uh install
2:16
this extension the errors will not go
2:18
away we need to go to this file and
2:21
just search for this property in double
2:23
quotes just write disable TS errors and
2:28
disable error all errors this is a
2:31
property and just change this property
2:33
to true so as soon as you change this
2:36
property to true you will see all your
2:39
errors will go away in all the
2:41
TypeScript files it also serves the
2:43
purpose of ESLint errors as well if you
2:46
are getting ESLint errors inside your
2:48
TypeScript project if for some reason
2:50
you want to disable all these errors you
2:52
can use this extension just click the
2:55
install button and then go to your
2:57
settings file here and just set this
2:59
property here disable TS errors disable
3:02
all errors to true as soon as you make
3:04
this setting instantly all your errors
3:07
will go away again if I want to revert
3:10
back you can just set this to false and
3:12
again the errors will come right back
3:15
you can see that so I found this
3:17
extension to be very useful because
3:19
while recording the tutorial it becomes
3:22
very much messy and it also does doesn't
3:25
look good while you see these errors
3:27
appearing so this is a fairly good
3:29
extension that you can install and then
3:31
set this to true and then all your
3:33
TypeScript errors will go away
3:37
so this is the tutorial here and thank
3:40
you very much for watching this video
3:42
and also check out my website guys which
3:46
is freemediatools.com
3:48
uh which contains unlimited number of
3:50
tools regarding audio video and image
3:53
and I will be seeing you in the next
3:55
live stream
#Programming
#Software