I'm trying to avoid having to use watch: true
in a tsconfig.json
configuration.
Through VSCode's tasks I'm using the base problem matcher $tsc-watch
but it's not launching tsc
in watch mode when building. I'm adding gulp
support and I see there is gulp-watch
but I'd like to understand why $tsc-watch
isn't working as I believe it should.
I figured this out by looking at the
typescript
extension'staskProvider.js
. In order fortsc-watch
to function the task neededoption: "watch"
to be set.