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
Open a package with references in the tsconfig.json file
Attempt to execute the tsc : watch - tsconfig.json build task
Behold the tsc error (pardon my french):
> Executing task: tsc --watch -b /Repro/tsconfig.json <
error TS6369: Option '--build' must be the first command line argument.
Le processus du terminal s'est achevé avec le code de sortie 1
Le terminal sera réutilisé par les tâches, appuyez sur une touche pour le fermer.
Does this issue occur when all extensions are disabled?: Yes
The issue appears to be caused by the -b being added at tasks.ts:221 and --watch being prepended to that value at tasks.ts:200, resulting in an invalid invocation of tsc. A possible solution might be to append --watch at the end instead of prepending.
The text was updated successfully, but these errors were encountered:
Steps to Reproduce:
references
in thetsconfig.json
filetsc : watch - tsconfig.json
build tasktsc
error (pardon my french):Does this issue occur when all extensions are disabled?: Yes
The issue appears to be caused by the
-b
being added attasks.ts:221
and--watch
being prepended to that value attasks.ts:200
, resulting in an invalid invocation oftsc
. A possible solution might be to append--watch
at the end instead of prepending.The text was updated successfully, but these errors were encountered: