FileSystemLoader does not keep a reference to the watcher:
|
const watcher = chokidar.watch(paths); |
It would help to save the reference (to enable synchronous shutdown of chokidar with watcher.close()), as is done in NodeResolveLoader:
|
this.watcher = chokidar.watch(); |