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
Currently the TypeScript build task is a normal compile. We could consider using a watch task instead since this gives us compile one save. Downside is that tsc -watch doesn't work well with large projects.
@dbaeumer making tsc a watch task is appealing it basically corresponds 'compile on save'. Since tsconfig.json supports a compileOnSave attribute we could use this attribute to decide whether the task is a compile or a watch task.
Currently the TypeScript build task is a normal compile. We could consider using a watch task instead since this gives us compile one save. Downside is that tsc -watch doesn't work well with large projects.
@egamma do you have a opinion ?
The text was updated successfully, but these errors were encountered: