We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b418a1 commit d1a699bCopy full SHA for d1a699b
1 file changed
server/src/server.ts
@@ -1545,6 +1545,15 @@ async function onMessage(msg: p.Message) {
1545
kind:
1546
p.WatchKind.Change | p.WatchKind.Create | p.WatchKind.Delete,
1547
},
1548
+ {
1549
+ // Watch ninja output
1550
+ globPattern: {
1551
+ baseUri: utils.pathToURI(projectRootPath),
1552
+ pattern: path.join("**", c.buildNinjaPartialPath),
1553
+ },
1554
+ kind:
1555
+ p.WatchKind.Change | p.WatchKind.Create | p.WatchKind.Delete,
1556
1557
];
1558
1559
);
0 commit comments