(oldTime, newTime)
| 6485 | ts.onWatchedFileStat = onWatchedFileStat; |
| 6486 | /*@internal*/ |
| 6487 | function getFileWatcherEventKind(oldTime, newTime) { |
| 6488 | return oldTime === 0 |
| 6489 | ? FileWatcherEventKind.Created |
| 6490 | : newTime === 0 |
| 6491 | ? FileWatcherEventKind.Deleted |
| 6492 | : FileWatcherEventKind.Changed; |
| 6493 | } |
| 6494 | ts.getFileWatcherEventKind = getFileWatcherEventKind; |
| 6495 | /*@internal*/ |
| 6496 | ts.ignoredPaths = ["/node_modules/.", "/.git", "/.#"]; |