You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write some invalid code e.g. const x: number = 1 + "1"; . There should be a problem reported in problems tab.
Close the HelloWorlds.ts editor window. Error from problems tab disappear.
Run Task > pick the build task
After compilation ends there are no problems in the problems tab.
Run Task > pick the watch task
Compilation ends but Building... in the status line doesn't disappear.
Does this issue occur when all extensions are disabled?: Yes
It seems that enabling pretty option in tsconfig breaks $tsc and $tsc-watch problem matchers. Enabling this option changes the output of typescript compilation (e.g. timestamp are in square brackets) and this is probably confusing above-mentioned matchers.
There is a connected bug report #44018 but the resolution there went in other direction (multiple lines from terminal #44192).
The text was updated successfully, but these errors were encountered:
Steps to Reproduce:
tsc --init
HelloWorlds.ts
"pretty": true
const x: number = 1 + "1";
. There should be a problem reported in problems tab.HelloWorlds.ts
editor window. Error from problems tab disappear.Building...
in the status line doesn't disappear.Does this issue occur when all extensions are disabled?: Yes
It seems that enabling
pretty
option intsconfig
breaks$tsc
and$tsc-watch
problem matchers. Enabling this option changes the output of typescript compilation (e.g. timestamp are in square brackets) and this is probably confusing above-mentioned matchers.There is a connected bug report #44018 but the resolution there went in other direction (multiple lines from terminal #44192).
The text was updated successfully, but these errors were encountered: