Add env to allow switch to non-polling if really wants to

This commit is contained in:
zhengbli
2016-04-22 10:20:41 -07:00
parent 576e5f8055
commit a09b001c61
3 changed files with 114 additions and 11 deletions

View File

@@ -111,12 +111,6 @@ namespace ts.server {
detailLevel?: string;
}
interface WatchedFile {
fileName: string;
callback: FileWatcherCallback;
mtime?: Date;
}
function parseLoggingEnvironmentString(logEnvStr: string): LogOptions {
const logEnv: LogOptions = {};
const args = logEnvStr.split(" ");