Info 0    [11:10:5.664] Starting TS Server
Info 1    [11:10:5.665] Version: 3.6.3
Info 2    [11:10:5.665] Arguments: /home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/node /home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/tsserver.js --useInferredProjectPerProjectRoot --enableTelemetry --cancellationPipeName /tmp/vscode-typescript1000/f7aa28e5ddfc7e7d96ec/tscancellation-ccd7e7fac28056c708ac.tmp* --logVerbosity verbose --logFile /home/daimms/.vscode-server-insiders/data/logs/20191104T105057/exthost1/vscode.typescript-language-features/tsserver-log-EdZ3x6/tsserver.log --globalPlugins typescript-tslint-plugin --pluginProbeLocations /home/daimms/.vscode-server-insiders/extensions/ms-vscode.vscode-typescript-tslint-plugin-1.2.2 --locale en --noGetErrOnBackgroundUpdate --validateDefaultNpmLocation
Info 3    [11:10:5.665] Platform: linux NodeVersion: 12 CaseSensitive: true
Info 4    [11:10:5.669] Binding...
Info 5    [11:10:5.675] request:
    {"seq":0,"type":"request","command":"configure","arguments":{"hostInfo":"vscode","preferences":{"providePrefixAndSuffixTextForRename":true,"allowRenameOfImportPath":true}}}
Info 6    [11:10:5.675] Host information vscode
Info 7    [11:10:5.676] response:
    {"seq":0,"type":"response","command":"configure","request_seq":0,"success":true}
Perf 8    [11:10:5.676] 0::configure: async elapsed time (in milliseconds) 1.5150
Info 9    [11:10:5.677] request:
    {"seq":1,"type":"request","command":"compilerOptionsForInferredProjects","arguments":{"options":{"module":"commonjs","target":"es2016","jsx":"preserve","allowJs":true,"allowSyntheticDefaultImports":true,"allowNonTsExtensions":true}}}
Info 10   [11:10:5.678] Scheduled: *ensureProjectForOpenFiles*
Perf 11   [11:10:5.678] 1::compilerOptionsForInferredProjects: elapsed time (in milliseconds) 1.5165
Info 12   [11:10:5.678] response:
    {"seq":0,"type":"response","command":"compilerOptionsForInferredProjects","request_seq":1,"success":true,"body":true}
Info 13   [11:10:5.679] request:
    {"seq":2,"type":"request","command":"updateOpen","arguments":{"changedFiles":[],"closedFiles":[],"openFiles":[{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","fileContent":"/**\n * Copyright (c) 2019 The xterm.js authors. All rights reserved.\n * @license MIT\n */\n\nimport { IBufferService, IDirtyRowService } from 'common/services/Services';\n\nexport class DirtyRowService implements IDirtyRowService {\n  serviceBrand: any;\n\n  private _start!: number;\n  private _end!: number;\n\n  public get start(): number { return this._start; }\n  public get end(): number { return this._end; }\n\n  constructor(\n    @IBufferService private readonly _bufferService: IBufferService\n  ) {\n    this.clearRange();\n  }\n\n  public clearRange(): void {\n    this._start = this._bufferService.buffer.y;\n    this._end = this._bufferService.buffer.y;\n  }\n\n  public markDirty(y: number): void {\n    if (y < this._start) {\n      this._start = y;\n    } else if (y > this._end) {\n      this._end = y;\n    }\n  }\n\n  public markRangeDirty(y1: number, y2: number): void {\n    if (y1 > y2) {\n      const temp = y1;\n      y1 = y2;\n      y2 = temp;\n    }\n    if (y1 < this._start) {\n      this._start = y1;\n    }\n    if (y2 > this._end) {\n      this._end = y2;\n    }\n  }\n\n  public markAllDirty(): void {\n    this.markRangeDirty(0, this._bufferService.rows - 1);\n  }\n}\n","projectRootPath":"/home/daimms/dev/Tyriar/xterm.js","scriptKindName":"TS"},{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","fileContent":"/**\n * Copyright (c) 2014 The xterm.js authors. All rights reserved.\n * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)\n * @license MIT\n */\n\nimport { IInputHandler, IInputHandlingTerminal } from './Types';\nimport { C0, C1 } from 'common/data/EscapeSequences';\nimport { CHARSETS, DEFAULT_CHARSET } from 'common/data/Charsets';\nimport { wcwidth } from 'common/CharWidth';\nimport { EscapeSequenceParser } from 'common/parser/EscapeSequenceParser';\nimport { Disposable } from 'common/Lifecycle';\nimport { concat } from 'common/TypedArrayUtils';\nimport { StringToUtf32, stringFromCodePoint, utf32ToString, Utf8ToUtf32 } from 'common/input/TextDecoder';\nimport { DEFAULT_ATTR_DATA } from 'common/buffer/BufferLine';\nimport { EventEmitter, IEvent } from 'common/EventEmitter';\nimport { IParsingState, IDcsHandler, IEscapeSequenceParser, IParams, IFunctionIdentifier } from 'common/parser/Types';\nimport { NULL_CELL_CODE, NULL_CELL_WIDTH, Attributes, FgFlags, BgFlags, Content } from 'common/buffer/Constants';\nimport { CellData } from 'common/buffer/CellData';\nimport { AttributeData } from 'common/buffer/AttributeData';\nimport { IAttributeData, IDisposable } from 'common/Types';\nimport { ICoreService, IBufferService, IOptionsService, ILogService, IDirtyRowService, ICoreMouseService } from 'common/services/Services';\nimport { OscHandler } from 'common/parser/OscParser';\nimport { DcsHandler } from 'common/parser/DcsParser';\n\n/**\n * Map collect to glevel. Used in `selectCharset`.\n */\nconst GLEVEL: {[key: string]: number} = {'(': 0, ')': 1, '*': 2, '+': 3, '-': 1, '.': 2};\n\n/**\n * Max length of the UTF32 input buffer. Real memory consumption is 4 times higher.\n */\nconst MAX_PARSEBUFFER_LENGTH = 131072;\n\n\n/**\n * DCS subparser implementations\n */\n\n/**\n * DCS $ q Pt ST\n *   DECRQSS (https://vt100.net/docs/vt510-rm/DECRQSS.html)\n *   Request Status String (DECRQSS), VT420 and up.\n *   Response: DECRPSS (https://vt100.net/docs/vt510-rm/DECRPSS.html)\n */\nclass DECRQSS implements IDcsHandler {\n  private _data: Uint32Array = new Uint32Array(0);\n\n  constructor(\n    private _bufferService: IBufferService,\n    private _coreService: ICoreService,\n    private _logService: ILogService,\n    private _optionsService: IOptionsService\n  ) { }\n\n  hook(params: IParams): void {\n    this._data = new Uint32Array(0);\n  }\n\n  put(data: Uint32Array, start: number, end: number): void {\n    this._data = concat(this._data, data.subarray(start, end));\n  }\n\n  unhook(success: boolean): void {\n    if (!success) {\n      this._data = new Uint32Array(0);\n      return;\n    }\n    const data = utf32ToString(this._data);\n    this._data = new Uint32Array(0);\n    switch (data) {\n      // valid: DCS 1 $ r Pt ST (xterm)\n      case '\"q': // DECSCA\n        return this._coreService.triggerDataEvent(`${C0.ESC}P1$r0\"q${C0.ESC}\\\\`);\n      case '\"p': // DECSCL\n        return this._coreService.triggerDataEvent(`${C0.ESC}P1$r61\"p${C0.ESC}\\\\`);\n      case 'r': // DECSTBM\n        const pt = '' + (this._bufferService.buffer.scrollTop + 1) +\n                ';' + (this._bufferService.buffer.scrollBottom + 1) + 'r';\n        return this._coreService.triggerDataEvent(`${C0.ESC}P1$r${pt}${C0.ESC}\\\\`);\n      case 'm': // SGR\n        // TODO: report real settings instead of 0m\n        return this._coreService.triggerDataEvent(`${C0.ESC}P1$r0m${C0.ESC}\\\\`);\n      case ' q': // DECSCUSR\n        const STYLES: {[key: string]: number} = {'block': 2, 'underline': 4, 'bar': 6};\n        let style = STYLES[this._optionsService.options.cursorStyle];\n        style -= this._optionsService.options.cursorBlink ? 1 : 0;\n        return this._coreService.triggerDataEvent(`${C0.ESC}P1$r${style} q${C0.ESC}\\\\`);\n      default:\n        // invalid: DCS 0 $ r Pt ST (xterm)\n        this._logService.debug('Unknown DCS $q %s', data);\n        this._coreService.triggerDataEvent(`${C0.ESC}P0$r${C0.ESC}\\\\`);\n    }\n  }\n}\n\n/**\n * DCS Ps; Ps| Pt ST\n *   DECUDK (https://vt100.net/docs/vt510-rm/DECUDK.html)\n *   not supported\n */\n\n/**\n * DCS + q Pt ST (xterm)\n *   Request Terminfo String\n *   not implemented\n */\n\n/**\n * DCS + p Pt ST (xterm)\n *   Set Terminfo Data\n *   not supported\n */\n\n\n\n/**\n * The terminal's standard implementation of IInputHandler, this handles all\n * input from the Parser.\n *\n * Refer to http://invisible-island.net/xterm/ctlseqs/ctlseqs.html to understand\n * each function's header comment.\n */\nexport class InputHandler extends Disposable implements IInputHandler {\n  private _parseBuffer: Uint32Array = new Uint32Array(4096);\n  private _stringDecoder: StringToUtf32 = new StringToUtf32();\n  private _utf8Decoder: Utf8ToUtf32 = new Utf8ToUtf32();\n  private _workCell: CellData = new CellData();\n\n  private _onCursorMove = new EventEmitter<void>();\n  public get onCursorMove(): IEvent<void> { return this._onCursorMove.event; }\n  private _onLineFeed = new EventEmitter<void>();\n  public get onLineFeed(): IEvent<void> { return this._onLineFeed.event; }\n  private _onScroll = new EventEmitter<number>();\n  public get onScroll(): IEvent<number> { return this._onScroll.event; }\n\n  constructor(\n    protected _terminal: IInputHandlingTerminal,\n    private readonly _bufferService: IBufferService,\n    private readonly _coreService: ICoreService,\n    private readonly _dirtyRowService: IDirtyRowService,\n    private readonly _logService: ILogService,\n    private readonly _optionsService: IOptionsService,\n    private readonly _coreMouseService: ICoreMouseService,\n    private readonly _parser: IEscapeSequenceParser = new EscapeSequenceParser())\n  {\n    super();\n\n    this.register(this._parser);\n\n    /**\n     * custom fallback handlers\n     */\n    this._parser.setCsiHandlerFallback((ident, params) => {\n      this._logService.debug('Unknown CSI code: ', { identifier: this._parser.identToString(ident), params: params.toArray() });\n    });\n    this._parser.setEscHandlerFallback(ident => {\n      this._logService.debug('Unknown ESC code: ', { identifier: this._parser.identToString(ident) });\n    });\n    this._parser.setExecuteHandlerFallback(code => {\n      this._logService.debug('Unknown EXECUTE code: ', { code });\n    });\n    this._parser.setOscHandlerFallback((identifier, action, data) => {\n      this._logService.debug('Unknown OSC code: ', { identifier, action, data });\n    });\n    this._parser.setDcsHandlerFallback((ident, action, payload) => {\n      if (action === 'HOOK') {\n        payload = payload.toArray();\n      }\n      this._logService.debug('Unknown DCS code: ', { identifier: this._parser.identToString(ident), action, payload });\n    });\n\n    /**\n     * print handler\n     */\n    this._parser.setPrintHandler((data, start, end) => this.print(data, start, end));\n\n    /**\n     * CSI handler\n     */\n    this._parser.setCsiHandler({final: '@'}, params => this.insertChars(params));\n    this._parser.setCsiHandler({intermediates: ' ', final: '@'}, params => this.scrollLeft(params));\n    this._parser.setCsiHandler({final: 'A'}, params => this.cursorUp(params));\n    this._parser.setCsiHandler({intermediates: ' ', final: 'A'}, params => this.scrollRight(params));\n    this._parser.setCsiHandler({final: 'B'}, params => this.cursorDown(params));\n    this._parser.setCsiHandler({final: 'C'}, params => this.cursorForward(params));\n    this._parser.setCsiHandler({final: 'D'}, params => this.cursorBackward(params));\n    this._parser.setCsiHandler({final: 'E'}, params => this.cursorNextLine(params));\n    this._parser.setCsiHandler({final: 'F'}, params => this.cursorPrecedingLine(params));\n    this._parser.setCsiHandler({final: 'G'}, params => this.cursorCharAbsolute(params));\n    this._parser.setCsiHandler({final: 'H'}, params => this.cursorPosition(params));\n    this._parser.setCsiHandler({final: 'I'}, params => this.cursorForwardTab(params));\n    this._parser.setCsiHandler({final: 'J'}, params => this.eraseInDisplay(params));\n    this._parser.setCsiHandler({prefix: '?', final: 'J'}, params => this.eraseInDisplay(params));\n    this._parser.setCsiHandler({final: 'K'}, params => this.eraseInLine(params));\n    this._parser.setCsiHandler({prefix: '?', final: 'K'}, params => this.eraseInLine(params));\n    this._parser.setCsiHandler({final: 'L'}, params => this.insertLines(params));\n    this._parser.setCsiHandler({final: 'M'}, params => this.deleteLines(params));\n    this._parser.setCsiHandler({final: 'P'}, params => this.deleteChars(params));\n    this._parser.setCsiHandler({final: 'S'}, params => this.scrollUp(params));\n    this._parser.setCsiHandler({final: 'T'}, params => this.scrollDown(params));\n    this._parser.setCsiHandler({final: 'X'}, params => this.eraseChars(params));\n    this._parser.setCsiHandler({final: 'Z'}, params => this.cursorBackwardTab(params));\n    this._parser.setCsiHandler({final: '`'}, params => this.charPosAbsolute(params));\n    this._parser.setCsiHandler({final: 'a'}, params => this.hPositionRelative(params));\n    this._parser.setCsiHandler({final: 'b'}, params => this.repeatPrecedingCharacter(params));\n    this._parser.setCsiHandler({final: 'c'}, params => this.sendDeviceAttributesPrimary(params));\n    this._parser.setCsiHandler({prefix: '>', final: 'c'}, params => this.sendDeviceAttributesSecondary(params));\n    this._parser.setCsiHandler({final: 'd'}, params => this.linePosAbsolute(params));\n    this._parser.setCsiHandler({final: 'e'}, params => this.vPositionRelative(params));\n    this._parser.setCsiHandler({final: 'f'}, params => this.hVPosition(params));\n    this._parser.setCsiHandler({final: 'g'}, params => this.tabClear(params));\n    this._parser.setCsiHandler({final: 'h'}, params => this.setMode(params));\n    this._parser.setCsiHandler({prefix: '?', final: 'h'}, params => this.setModePrivate(params));\n    this._parser.setCsiHandler({final: 'l'}, params => this.resetMode(params));\n    this._parser.setCsiHandler({prefix: '?', final: 'l'}, params => this.resetModePrivate(params));\n    this._parser.setCsiHandler({final: 'm'}, params => this.charAttributes(params));\n    this._parser.setCsiHandler({final: 'n'}, params => this.deviceStatus(params));\n    this._parser.setCsiHandler({prefix: '?', final: 'n'}, params => this.deviceStatusPrivate(params));\n    this._parser.setCsiHandler({intermediates: '!', final: 'p'}, params => this.softReset(params));\n    this._parser.setCsiHandler({intermediates: ' ', final: 'q'}, params => this.setCursorStyle(params));\n    this._parser.setCsiHandler({final: 'r'}, params => this.setScrollRegion(params));\n    this._parser.setCsiHandler({final: 's'}, params => this.saveCursor(params));\n    this._parser.setCsiHandler({final: 'u'}, params => this.restoreCursor(params));\n    this._parser.setCsiHandler({intermediates: '\\'', final: '}'}, params => this.insertColumns(params));\n    this._parser.setCsiHandler({intermediates: '\\'', final: '~'}, params => this.deleteColumns(params));\n\n    /**\n     * execute handler\n     */\n    this._parser.setExecuteHandler(C0.BEL, () => this.bell());\n    this._parser.setExecuteHandler(C0.LF, () => this.lineFeed());\n    this._parser.setExecuteHandler(C0.VT, () => this.lineFeed());\n    this._parser.setExecuteHandler(C0.FF, () => this.lineFeed());\n    this._parser.setExecuteHandler(C0.CR, () => this.carriageReturn());\n    this._parser.setExecuteHandler(C0.BS, () => this.backspace());\n    this._parser.setExecuteHandler(C0.HT, () => this.tab());\n    this._parser.setExecuteHandler(C0.SO, () => this.shiftOut());\n    this._parser.setExecuteHandler(C0.SI, () => this.shiftIn());\n    // FIXME:   What do to with missing? Old code just added those to print.\n\n    this._parser.setExecuteHandler(C1.IND, () => this.index());\n    this._parser.setExecuteHandler(C1.NEL, () => this.nextLine());\n    this._parser.setExecuteHandler(C1.HTS, () => this.tabSet());\n\n    /**\n     * OSC handler\n     */\n    //   0 - icon name + title\n    this._parser.setOscHandler(0, new OscHandler((data: string) => this.setTitle(data)));\n    //   1 - icon name\n    //   2 - title\n    this._parser.setOscHandler(2, new OscHandler((data: string) => this.setTitle(data)));\n    //   3 - set property X in the form \"prop=value\"\n    //   4 - Change Color Number\n    //   5 - Change Special Color Number\n    //   6 - Enable/disable Special Color Number c\n    //   7 - current directory? (not in xterm spec, see https://gitlab.com/gnachman/iterm2/issues/3939)\n    //  10 - Change VT100 text foreground color to Pt.\n    //  11 - Change VT100 text background color to Pt.\n    //  12 - Change text cursor color to Pt.\n    //  13 - Change mouse foreground color to Pt.\n    //  14 - Change mouse background color to Pt.\n    //  15 - Change Tektronix foreground color to Pt.\n    //  16 - Change Tektronix background color to Pt.\n    //  17 - Change highlight background color to Pt.\n    //  18 - Change Tektronix cursor color to Pt.\n    //  19 - Change highlight foreground color to Pt.\n    //  46 - Change Log File to Pt.\n    //  50 - Set Font to Pt.\n    //  51 - reserved for Emacs shell.\n    //  52 - Manipulate Selection Data.\n    // 104 ; c - Reset Color Number c.\n    // 105 ; c - Reset Special Color Number c.\n    // 106 ; c; f - Enable/disable Special Color Number c.\n    // 110 - Reset VT100 text foreground color.\n    // 111 - Reset VT100 text background color.\n    // 112 - Reset text cursor color.\n    // 113 - Reset mouse foreground color.\n    // 114 - Reset mouse background color.\n    // 115 - Reset Tektronix foreground color.\n    // 116 - Reset Tektronix background color.\n    // 117 - Reset highlight color.\n    // 118 - Reset Tektronix cursor color.\n    // 119 - Reset highlight foreground color.\n\n    /**\n     * ESC handlers\n     */\n    this._parser.setEscHandler({final: '7'}, () => this.saveCursor());\n    this._parser.setEscHandler({final: '8'}, () => this.restoreCursor());\n    this._parser.setEscHandler({final: 'D'}, () => this.index());\n    this._parser.setEscHandler({final: 'E'}, () => this.nextLine());\n    this._parser.setEscHandler({final: 'H'}, () => this.tabSet());\n    this._parser.setEscHandler({final: 'M'}, () => this.reverseIndex());\n    this._parser.setEscHandler({final: '='}, () => this.keypadApplicationMode());\n    this._parser.setEscHandler({final: '>'}, () => this.keypadNumericMode());\n    this._parser.setEscHandler({final: 'c'}, () => this.reset());\n    this._parser.setEscHandler({final: 'n'}, () => this.setgLevel(2));\n    this._parser.setEscHandler({final: 'o'}, () => this.setgLevel(3));\n    this._parser.setEscHandler({final: '|'}, () => this.setgLevel(3));\n    this._parser.setEscHandler({final: '}'}, () => this.setgLevel(2));\n    this._parser.setEscHandler({final: '~'}, () => this.setgLevel(1));\n    this._parser.setEscHandler({intermediates: '%', final: '@'}, () => this.selectDefaultCharset());\n    this._parser.setEscHandler({intermediates: '%', final: 'G'}, () => this.selectDefaultCharset());\n    for (const flag in CHARSETS) {\n      this._parser.setEscHandler({intermediates: '(', final: flag}, () => this.selectCharset('(' + flag));\n      this._parser.setEscHandler({intermediates: ')', final: flag}, () => this.selectCharset(')' + flag));\n      this._parser.setEscHandler({intermediates: '*', final: flag}, () => this.selectCharset('*' + flag));\n      this._parser.setEscHandler({intermediates: '+', final: flag}, () => this.selectCharset('+' + flag));\n      this._parser.setEscHandler({intermediates: '-', final: flag}, () => this.selectCharset('-' + flag));\n      this._parser.setEscHandler({intermediates: '.', final: flag}, () => this.selectCharset('.' + flag));\n      this._parser.setEscHandler({intermediates: '/', final: flag}, () => this.selectCharset('/' + flag)); // TODO: supported?\n    }\n    this._parser.setEscHandler({intermediates: '#', final: '8'}, () => this.screenAlignmentPattern());\n\n    /**\n     * error handler\n     */\n    this._parser.setErrorHandler((state: IParsingState) => {\n      this._logService.error('Parsing error: ', state);\n      return state;\n    });\n\n    /**\n     * DCS handler\n     */\n    this._parser.setDcsHandler({intermediates: '$', final: 'q'}, new DECRQSS(this._bufferService, this._coreService, this._logService, this._optionsService));\n  }\n\n  public dispose(): void {\n    super.dispose();\n  }\n\n  public parse(data: string | Uint8Array): void {\n    let buffer = this._bufferService.buffer;\n    const cursorStartX = buffer.x;\n    const cursorStartY = buffer.y;\n\n    this._logService.debug('parsing data', data);\n\n    // resize input buffer if needed\n    if (this._parseBuffer.length < data.length) {\n      if (this._parseBuffer.length < MAX_PARSEBUFFER_LENGTH) {\n        this._parseBuffer = new Uint32Array(Math.min(data.length, MAX_PARSEBUFFER_LENGTH));\n      }\n    }\n\n    // Clear the dirty row service so we know which lines changed as a result of parsing\n    this._dirtyRowService.clearRange();\n\n    // process big data in smaller chunks\n    if (data.length > MAX_PARSEBUFFER_LENGTH) {\n      for (let i = 0; i < data.length; i += MAX_PARSEBUFFER_LENGTH) {\n        const end = i + MAX_PARSEBUFFER_LENGTH < data.length ? i + MAX_PARSEBUFFER_LENGTH : data.length;\n        const len = (typeof data === 'string')\n          ? this._stringDecoder.decode(data.substring(i, end), this._parseBuffer)\n          : this._utf8Decoder.decode(data.subarray(i, end), this._parseBuffer);\n        this._parser.parse(this._parseBuffer, len);\n      }\n    } else {\n      const len = (typeof data === 'string')\n        ? this._stringDecoder.decode(data, this._parseBuffer)\n        : this._utf8Decoder.decode(data, this._parseBuffer);\n      this._parser.parse(this._parseBuffer, len);\n    }\n\n    buffer = this._bufferService.buffer;\n    if (buffer.x !== cursorStartX || buffer.y !== cursorStartY) {\n      this._onCursorMove.fire();\n    }\n\n    // Refresh any dirty rows accumulated as part of parsing\n      this._onCursorMove.fire();\n    }\n    console.log('refresh ' + this._dirtyRowService.start + '-' + this._dirtyRowService.end);\n    console.log('refresh ' + this._dirtyRowService.start + '-' + this._dirtyRowService.end)\n    this._terminal.refresh(this._dirtyRowService.start, this._dirtyRowService.end);\n  }\n\n  public print(data: Uint32Array, start: number, end: number): void {\n    let code: number;\n    let chWidth: number;\n    const buffer = this._bufferService.buffer;\n    const charset = this._terminal.charset;\n    const screenReaderMode = this._optionsService.options.screenReaderMode;\n    const cols = this._bufferService.cols;\n    const wraparoundMode = this._terminal.wraparoundMode;\n    const insertMode = this._terminal.insertMode;\n    const curAttr = this._terminal.curAttrData;\n    let bufferRow = buffer.lines.get(buffer.y + buffer.ybase);\n\n    this._dirtyRowService.markDirty(buffer.y);\n    for (let pos = start; pos < end; ++pos) {\n      code = data[pos];\n\n      // calculate print space\n      // expensive call, therefore we save width in line buffer\n      chWidth = wcwidth(code);\n\n      // get charset replacement character\n      // charset is only defined for ASCII, therefore we only\n      // search for an replacement char if code < 127\n      if (code < 127 && charset) {\n        const ch = charset[String.fromCharCode(code)];\n        if (ch) {\n          code = ch.charCodeAt(0);\n        }\n      }\n\n      if (screenReaderMode) {\n        this._terminal.onA11yCharEmitter.fire(stringFromCodePoint(code));\n      }\n\n      // insert combining char at last cursor position\n      // FIXME: needs handling after cursor jumps\n      // buffer.x should never be 0 for a combining char\n      // since they always follow a cell consuming char\n      // therefore we can test for buffer.x to avoid overflow left\n      if (!chWidth && buffer.x) {\n        if (!bufferRow.getWidth(buffer.x - 1)) {\n          // found empty cell after fullwidth, need to go 2 cells back\n          // it is save to step 2 cells back here\n          // since an empty cell is only set by fullwidth chars\n          bufferRow.addCodepointToCell(buffer.x - 2, code);\n        } else {\n          bufferRow.addCodepointToCell(buffer.x - 1, code);\n        }\n        continue;\n      }\n\n      // goto next line if ch would overflow\n      // TODO: needs a global min terminal width of 2\n      // FIXME: additionally ensure chWidth fits into a line\n      //   -->  maybe forbid cols<xy at higher level as it would\n      //        introduce a bad runtime penalty here\n      if (buffer.x + chWidth - 1 >= cols) {\n        // autowrap - DECAWM\n        // automatically wraps to the beginning of the next line\n        if (wraparoundMode) {\n          buffer.x = 0;\n          buffer.y++;\n          if (buffer.y === buffer.scrollBottom + 1) {\n            buffer.y--;\n            this._terminal.scroll(true);\n          } else {\n            if (buffer.y >= this._bufferService.rows) {\n              buffer.y = this._bufferService.rows - 1;\n            }\n            // The line already exists (eg. the initial viewport), mark it as a\n            // wrapped line\n            buffer.lines.get(buffer.y).isWrapped = true;\n          }\n          // row changed, get it again\n          bufferRow = buffer.lines.get(buffer.y + buffer.ybase);\n        } else {\n          buffer.x = cols - 1;\n          if (chWidth === 2) {\n            // FIXME: check for xterm behavior\n            // What to do here? We got a wide char that does not fit into last cell\n            continue;\n          }\n        }\n      }\n\n      // insert mode: move characters to right\n      if (insertMode) {\n        // right shift cells according to the width\n        bufferRow.insertCells(buffer.x, chWidth, buffer.getNullCell(curAttr));\n        // test last cell - since the last cell has only room for\n        // a halfwidth char any fullwidth shifted there is lost\n        // and will be set to empty cell\n        if (bufferRow.getWidth(cols - 1) === 2) {\n          bufferRow.setCellFromCodePoint(cols - 1, NULL_CELL_CODE, NULL_CELL_WIDTH, curAttr.fg, curAttr.bg);\n        }\n      }\n\n      // write current char to buffer and advance cursor\n      bufferRow.setCellFromCodePoint(buffer.x++, code, chWidth, curAttr.fg, curAttr.bg);\n\n      // fullwidth char - also set next cell to placeholder stub and advance cursor\n      // for graphemes bigger than fullwidth we can simply loop to zero\n      // we already made sure above, that buffer.x + chWidth will not overflow right\n      if (chWidth > 0) {\n        while (--chWidth) {\n          // other than a regular empty cell a cell following a wide char has no width\n          bufferRow.setCellFromCodePoint(buffer.x++, 0, 0, curAttr.fg, curAttr.bg);\n        }\n      }\n    }\n    // store last char in Parser.precedingCodepoint for REP to work correctly\n    // This needs to check whether:\n    //  - fullwidth + surrogates: reset\n    //  - combining: only base char gets carried on (bug in xterm?)\n    if (end) {\n      bufferRow.loadCell(buffer.x - 1, this._workCell);\n      if (this._workCell.getWidth() === 2 || this._workCell.getCode() > 0xFFFF) {\n        this._parser.precedingCodepoint = 0;\n      } else if (this._workCell.isCombined()) {\n        this._parser.precedingCodepoint = this._workCell.getChars().charCodeAt(0);\n      } else {\n        this._parser.precedingCodepoint = this._workCell.content;\n      }\n    }\n    this._dirtyRowService.markDirty(buffer.y);\n  }\n\n  /**\n   * Forward addCsiHandler from parser.\n   */\n  public addCsiHandler(id: IFunctionIdentifier, callback: (params: IParams) => boolean): IDisposable {\n    return this._parser.addCsiHandler(id, callback);\n  }\n\n  /**\n   * Forward addDcsHandler from parser.\n   */\n  public addDcsHandler(id: IFunctionIdentifier, callback: (data: string, param: IParams) => boolean): IDisposable {\n    return this._parser.addDcsHandler(id, new DcsHandler(callback));\n  }\n\n  /**\n   * Forward addEscHandler from parser.\n   */\n  public addEscHandler(id: IFunctionIdentifier, callback: () => boolean): IDisposable {\n    return this._parser.addEscHandler(id, callback);\n  }\n\n  /**\n   * Forward addOscHandler from parser.\n   */\n  public addOscHandler(ident: number, callback: (data: string) => boolean): IDisposable {\n    return this._parser.addOscHandler(ident, new OscHandler(callback));\n  }\n\n  /**\n   * BEL\n   * Bell (Ctrl-G).\n   */\n  public bell(): void {\n    this._terminal.bell();\n  }\n\n  /**\n   * LF\n   * Line Feed or New Line (NL).  (LF  is Ctrl-J).\n   */\n  public lineFeed(): void {\n    // make buffer local for faster access\n    const buffer = this._bufferService.buffer;\n\n    if (this._optionsService.options.convertEol) {\n      buffer.x = 0;\n    }\n    buffer.y++;\n    if (buffer.y === buffer.scrollBottom + 1) {\n      buffer.y--;\n      this._terminal.scroll();\n    } else if (buffer.y >= this._bufferService.rows) {\n      buffer.y = this._bufferService.rows - 1;\n    }\n    // If the end of the line is hit, prevent this action from wrapping around to the next line.\n    if (buffer.x >= this._bufferService.cols) {\n      buffer.x--;\n    }\n\n    this._onLineFeed.fire();\n  }\n\n  /**\n   * CR\n   * Carriage Return (Ctrl-M).\n   */\n  public carriageReturn(): void {\n    this._bufferService.buffer.x = 0;\n  }\n\n  /**\n   * BS\n   * Backspace (Ctrl-H).\n   */\n  public backspace(): void {\n    this._restrictCursor();\n    if (this._bufferService.buffer.x > 0) {\n      this._bufferService.buffer.x--;\n    }\n  }\n\n  /**\n   * TAB\n   * Horizontal Tab (HT) (Ctrl-I).\n   */\n  public tab(): void {\n    if (this._bufferService.buffer.x >= this._bufferService.cols) {\n      return;\n    }\n    const originalX = this._bufferService.buffer.x;\n    this._bufferService.buffer.x = this._bufferService.buffer.nextStop();\n    if (this._optionsService.options.screenReaderMode) {\n      this._terminal.onA11yTabEmitter.fire(this._bufferService.buffer.x - originalX);\n    }\n  }\n\n  /**\n   * SO\n   * Shift Out (Ctrl-N) -> Switch to Alternate Character Set.  This invokes the\n   * G1 character set.\n   */\n  public shiftOut(): void {\n    this._terminal.setgLevel(1);\n  }\n\n  /**\n   * SI\n   * Shift In (Ctrl-O) -> Switch to Standard Character Set.  This invokes the G0\n   * character set (the default).\n   */\n  public shiftIn(): void {\n    this._terminal.setgLevel(0);\n  }\n\n  /**\n   * Restrict cursor to viewport size / scroll margin (origin mode).\n   */\n  private _restrictCursor(): void {\n    this._bufferService.buffer.x = Math.min(this._bufferService.cols - 1, Math.max(0, this._bufferService.buffer.x));\n    this._bufferService.buffer.y = this._terminal.originMode\n      ? Math.min(this._bufferService.buffer.scrollBottom, Math.max(this._bufferService.buffer.scrollTop, this._bufferService.buffer.y))\n      : Math.min(this._bufferService.rows - 1, Math.max(0, this._bufferService.buffer.y));\n  }\n\n  /**\n   * Set absolute cursor position.\n   */\n  private _setCursor(x: number, y: number): void {\n    if (this._terminal.originMode) {\n      this._bufferService.buffer.x = x;\n      this._bufferService.buffer.y = this._bufferService.buffer.scrollTop + y;\n    } else {\n      this._bufferService.buffer.x = x;\n      this._bufferService.buffer.y = y;\n    }\n    this._restrictCursor();\n  }\n\n  /**\n   * Set relative cursor position.\n   */\n  private _moveCursor(x: number, y: number): void {\n    // for relative changes we have to make sure we are within 0 .. cols/rows - 1\n    // before calculating the new position\n    this._restrictCursor();\n    this._setCursor(this._bufferService.buffer.x + x, this._bufferService.buffer.y + y);\n  }\n\n  /**\n   * CSI Ps A\n   * Cursor Up Ps Times (default = 1) (CUU).\n   */\n  public cursorUp(params: IParams): void {\n    // stop at scrollTop\n    const diffToTop = this._bufferService.buffer.y - this._bufferService.buffer.scrollTop;\n    if (diffToTop >= 0) {\n      this._moveCursor(0, -Math.min(diffToTop, params.params[0] || 1));\n    } else {\n      this._moveCursor(0, -(params.params[0] || 1));\n    }\n  }\n\n  /**\n   * CSI Ps B\n   * Cursor Down Ps Times (default = 1) (CUD).\n   */\n  public cursorDown(params: IParams): void {\n    // stop at scrollBottom\n    const diffToBottom = this._bufferService.buffer.scrollBottom - this._bufferService.buffer.y;\n    if (diffToBottom >= 0) {\n      this._moveCursor(0, Math.min(diffToBottom, params.params[0] || 1));\n    } else {\n      this._moveCursor(0, params.params[0] || 1);\n    }\n  }\n\n  /**\n   * CSI Ps C\n   * Cursor Forward Ps Times (default = 1) (CUF).\n   */\n  public cursorForward(params: IParams): void {\n    this._moveCursor(params.params[0] || 1, 0);\n  }\n\n  /**\n   * CSI Ps D\n   * Cursor Backward Ps Times (default = 1) (CUB).\n   */\n  public cursorBackward(params: IParams): void {\n    this._moveCursor(-(params.params[0] || 1), 0);\n  }\n\n  /**\n   * CSI Ps E\n   * Cursor Next Line Ps Times (default = 1) (CNL).\n   * Other than cursorDown (CUD) also set the cursor to first column.\n   */\n  public cursorNextLine(params: IParams): void {\n    this.cursorDown(params);\n    this._bufferService.buffer.x = 0;\n  }\n\n  /**\n   * CSI Ps F\n   * Cursor Previous Line Ps Times (default = 1) (CPL).\n   * Other than cursorUp (CUU) also set the cursor to first column.\n   */\n  public cursorPrecedingLine(params: IParams): void {\n    this.cursorUp(params);\n    this._bufferService.buffer.x = 0;\n  }\n\n  /**\n   * CSI Ps G\n   * Cursor Character Absolute  [column] (default = [row,1]) (CHA).\n   */\n  public cursorCharAbsolute(params: IParams): void {\n    this._setCursor((params.params[0] || 1) - 1, this._bufferService.buffer.y);\n  }\n\n  /**\n   * CSI Ps ; Ps H\n   * Cursor Position [row;column] (default = [1,1]) (CUP).\n   */\n  public cursorPosition(params: IParams): void {\n    this._setCursor(\n      // col\n      (params.length >= 2) ? (params.params[1] || 1) - 1 : 0,\n      // row\n      (params.params[0] || 1) - 1);\n  }\n\n  /**\n   * CSI Pm `  Character Position Absolute\n   *   [column] (default = [row,1]) (HPA).\n   * Currently same functionality as CHA.\n   */\n  public charPosAbsolute(params: IParams): void {\n    this._setCursor((params.params[0] || 1) - 1, this._bufferService.buffer.y);\n  }\n\n  /**\n   * CSI Pm a  Character Position Relative\n   *   [columns] (default = [row,col+1]) (HPR)\n   * Currently same functionality as CUF.\n   */\n  public hPositionRelative(params: IParams): void {\n    this._moveCursor(params.params[0] || 1, 0);\n  }\n\n  /**\n   * CSI Pm d  Vertical Position Absolute (VPA)\n   *   [row] (default = [1,column])\n   */\n  public linePosAbsolute(params: IParams): void {\n    this._setCursor(this._bufferService.buffer.x, (params.params[0] || 1) - 1);\n  }\n\n  /**\n   * CSI Pm e  Vertical Position Relative (VPR)\n   *   [rows] (default = [row+1,column])\n   * reuse CSI Ps B ?\n   */\n  public vPositionRelative(params: IParams): void {\n    this._moveCursor(0, params.params[0] || 1);\n  }\n\n  /**\n   * CSI Ps ; Ps f\n   *   Horizontal and Vertical Position [row;column] (default =\n   *   [1,1]) (HVP).\n   *   Same as CUP.\n   */\n  public hVPosition(params: IParams): void {\n    this.cursorPosition(params);\n  }\n\n  /**\n   * CSI Ps g  Tab Clear (TBC).\n   *     Ps = 0  -> Clear Current Column (default).\n   *     Ps = 3  -> Clear All.\n   * Potentially:\n   *   Ps = 2  -> Clear Stops on Line.\n   *   http://vt100.net/annarbor/aaa-ug/section6.html\n   */\n  public tabClear(params: IParams): void {\n    const param = params.params[0];\n    if (param === 0) {\n      delete this._bufferService.buffer.tabs[this._bufferService.buffer.x];\n    } else if (param === 3) {\n      this._bufferService.buffer.tabs = {};\n    }\n  }\n\n  /**\n   * CSI Ps I\n   *   Cursor Forward Tabulation Ps tab stops (default = 1) (CHT).\n   */\n  public cursorForwardTab(params: IParams): void {\n    if (this._bufferService.buffer.x >= this._bufferService.cols) {\n      return;\n    }\n    let param = params.params[0] || 1;\n    while (param--) {\n      this._bufferService.buffer.x = this._bufferService.buffer.nextStop();\n    }\n  }\n\n  /**\n   * CSI Ps Z  Cursor Backward Tabulation Ps tab stops (default = 1) (CBT).\n   */\n  public cursorBackwardTab(params: IParams): void {\n    if (this._bufferService.buffer.x >= this._bufferService.cols) {\n      return;\n    }\n    let param = params.params[0] || 1;\n\n    // make buffer local for faster access\n    const buffer = this._bufferService.buffer;\n\n    while (param--) {\n      buffer.x = buffer.prevStop();\n    }\n  }\n\n\n  /**\n   * Helper method to erase cells in a terminal row.\n   * The cell gets replaced with the eraseChar of the terminal.\n   * @param y row index\n   * @param start first cell index to be erased\n   * @param end   end - 1 is last erased cell\n   */\n  private _eraseInBufferLine(y: number, start: number, end: number, clearWrap: boolean = false): void {\n    const line = this._bufferService.buffer.lines.get(this._bufferService.buffer.ybase + y);\n    line.replaceCells(\n      start,\n      end,\n      this._bufferService.buffer.getNullCell(this._terminal.eraseAttrData())\n    );\n    if (clearWrap) {\n      line.isWrapped = false;\n    }\n  }\n\n  /**\n   * Helper method to reset cells in a terminal row.\n   * The cell gets replaced with the eraseChar of the terminal and the isWrapped property is set to false.\n   * @param y row index\n   */\n  private _resetBufferLine(y: number): void {\n    const line = this._bufferService.buffer.lines.get(this._bufferService.buffer.ybase + y);\n    line.fill(this._bufferService.buffer.getNullCell(this._terminal.eraseAttrData()));\n    line.isWrapped = false;\n  }\n\n  /**\n   * CSI Ps J  Erase in Display (ED).\n   *     Ps = 0  -> Erase Below (default).\n   *     Ps = 1  -> Erase Above.\n   *     Ps = 2  -> Erase All.\n   *     Ps = 3  -> Erase Saved Lines (xterm).\n   * CSI ? Ps J\n   *   Erase in Display (DECSED).\n   *     Ps = 0  -> Selective Erase Below (default).\n   *     Ps = 1  -> Selective Erase Above.\n   *     Ps = 2  -> Selective Erase All.\n   */\n  public eraseInDisplay(params: IParams): void {\n    this._restrictCursor();\n    let j;\n    switch (params.params[0]) {\n      case 0:\n        j = this._bufferService.buffer.y;\n        this._dirtyRowService.markDirty(j);\n        this._eraseInBufferLine(j++, this._bufferService.buffer.x, this._bufferService.cols, this._bufferService.buffer.x === 0);\n        for (; j < this._bufferService.rows; j++) {\n          this._resetBufferLine(j);\n        }\n        this._dirtyRowService.markDirty(j);\n        break;\n      case 1:\n        j = this._bufferService.buffer.y;\n        this._dirtyRowService.markDirty(j);\n        // Deleted front part of line and everything before. This line will no longer be wrapped.\n        this._eraseInBufferLine(j, 0, this._bufferService.buffer.x + 1, true);\n        if (this._bufferService.buffer.x + 1 >= this._bufferService.cols) {\n          // Deleted entire previous line. This next line can no longer be wrapped.\n          this._bufferService.buffer.lines.get(j + 1).isWrapped = false;\n        }\n        while (j--) {\n          this._resetBufferLine(j);\n        }\n        this._dirtyRowService.markDirty(0);\n        break;\n      case 2:\n        j = this._bufferService.rows;\n        this._dirtyRowService.markDirty(j - 1);\n        while (j--) {\n          this._resetBufferLine(j);\n        }\n        this._dirtyRowService.markDirty(0);\n        break;\n      case 3:\n        // Clear scrollback (everything not in viewport)\n        const scrollBackSize = this._bufferService.buffer.lines.length - this._bufferService.rows;\n        if (scrollBackSize > 0) {\n          this._bufferService.buffer.lines.trimStart(scrollBackSize);\n          this._bufferService.buffer.ybase = Math.max(this._bufferService.buffer.ybase - scrollBackSize, 0);\n          this._bufferService.buffer.ydisp = Math.max(this._bufferService.buffer.ydisp - scrollBackSize, 0);\n          // Force a scroll event to refresh viewport\n          this._onScroll.fire(0);\n        }\n        break;\n    }\n  }\n\n  /**\n   * CSI Ps K  Erase in Line (EL).\n   *     Ps = 0  -> Erase to Right (default).\n   *     Ps = 1  -> Erase to Left.\n   *     Ps = 2  -> Erase All.\n   * CSI ? Ps K\n   *   Erase in Line (DECSEL).\n   *     Ps = 0  -> Selective Erase to Right (default).\n   *     Ps = 1  -> Selective Erase to Left.\n   *     Ps = 2  -> Selective Erase All.\n   */\n  public eraseInLine(params: IParams): void {\n    this._restrictCursor();\n    switch (params.params[0]) {\n      case 0:\n        this._eraseInBufferLine(this._bufferService.buffer.y, this._bufferService.buffer.x, this._bufferService.cols);\n        break;\n      case 1:\n        this._eraseInBufferLine(this._bufferService.buffer.y, 0, this._bufferService.buffer.x + 1);\n        break;\n      case 2:\n        this._eraseInBufferLine(this._bufferService.buffer.y, 0, this._bufferService.cols);\n        break;\n    }\n    this._dirtyRowService.markDirty(this._bufferService.buffer.y);\n  }\n\n  /**\n   * CSI Ps L\n   * Insert Ps Line(s) (default = 1) (IL).\n   */\n  public insertLines(params: IParams): void {\n    this._restrictCursor();\n    let param = params.params[0] || 1;\n\n    // make buffer local for faster access\n    const buffer = this._bufferService.buffer;\n\n    if (buffer.y > buffer.scrollBottom || buffer.y < buffer.scrollTop) {\n      return;\n    }\n\n    const row: number = buffer.y + buffer.ybase;\n\n    const scrollBottomRowsOffset = this._bufferService.rows - 1 - buffer.scrollBottom;\n    const scrollBottomAbsolute = this._bufferService.rows - 1 + buffer.ybase - scrollBottomRowsOffset + 1;\n    while (param--) {\n      // test: echo -e '\\e[44m\\e[1L\\e[0m'\n      // blankLine(true) - xterm/linux behavior\n      buffer.lines.splice(scrollBottomAbsolute - 1, 1);\n      buffer.lines.splice(row, 0, buffer.getBlankLine(this._terminal.eraseAttrData()));\n    }\n\n    this._dirtyRowService.markRangeDirty(buffer.y, buffer.scrollBottom);\n    buffer.x = 0; // see https://vt100.net/docs/vt220-rm/chapter4.html - vt220 only?\n  }\n\n  /**\n   * CSI Ps M\n   * Delete Ps Line(s) (default = 1) (DL).\n   */\n  public deleteLines(params: IParams): void {\n    this._restrictCursor();\n    let param = params.params[0] || 1;\n\n    // make buffer local for faster access\n    const buffer = this._bufferService.buffer;\n\n    if (buffer.y > buffer.scrollBottom || buffer.y < buffer.scrollTop) {\n      return;\n    }\n\n    const row: number = buffer.y + buffer.ybase;\n\n    let j: number;\n    j = this._bufferService.rows - 1 - buffer.scrollBottom;\n    j = this._bufferService.rows - 1 + buffer.ybase - j;\n    while (param--) {\n      // test: echo -e '\\e[44m\\e[1M\\e[0m'\n      // blankLine(true) - xterm/linux behavior\n      buffer.lines.splice(row, 1);\n      buffer.lines.splice(j, 0, buffer.getBlankLine(this._terminal.eraseAttrData()));\n    }\n\n    this._dirtyRowService.markRangeDirty(buffer.y, buffer.scrollBottom);\n    buffer.x = 0; // see https://vt100.net/docs/vt220-rm/chapter4.html - vt220 only?\n  }\n\n  /**\n   * CSI Ps @\n   * Insert Ps (Blank) Character(s) (default = 1) (ICH).\n   */\n  public insertChars(params: IParams): void {\n    this._restrictCursor();\n    const line = this._bufferService.buffer.lines.get(this._bufferService.buffer.y + this._bufferService.buffer.ybase);\n    if (line) {\n      line.insertCells(\n        this._bufferService.buffer.x,\n        params.params[0] || 1,\n        this._bufferService.buffer.getNullCell(this._terminal.eraseAttrData())\n      );\n      this._dirtyRowService.markDirty(this._bufferService.buffer.y);\n    }\n  }\n\n  /**\n   * CSI Ps P\n   * Delete Ps Character(s) (default = 1) (DCH).\n   */\n  public deleteChars(params: IParams): void {\n    this._restrictCursor();\n    const line = this._bufferService.buffer.lines.get(this._bufferService.buffer.y + this._bufferService.buffer.ybase);\n    if (line) {\n      line.deleteCells(\n        this._bufferService.buffer.x,\n        params.params[0] || 1,\n        this._bufferService.buffer.getNullCell(this._terminal.eraseAttrData())\n      );\n      this._dirtyRowService.markDirty(this._bufferService.buffer.y);\n    }\n  }\n\n  /**\n   * CSI Ps S  Scroll up Ps lines (default = 1) (SU).\n   */\n  public scrollUp(params: IParams): void {\n    let param = params.params[0] || 1;\n\n    // make buffer local for faster access\n    const buffer = this._bufferService.buffer;\n\n    while (param--) {\n      buffer.lines.splice(buffer.ybase + buffer.scrollTop, 1);\n      buffer.lines.splice(buffer.ybase + buffer.scrollBottom, 0, buffer.getBlankLine(this._terminal.eraseAttrData()));\n    }\n    this._dirtyRowService.markRangeDirty(buffer.scrollTop, buffer.scrollBottom);\n  }\n\n  /**\n   * CSI Ps T  Scroll down Ps lines (default = 1) (SD).\n   */\n  public scrollDown(params: IParams): void {\n    let param = params.params[0] || 1;\n\n    // make buffer local for faster access\n    const buffer = this._bufferService.buffer;\n\n    while (param--) {\n      buffer.lines.splice(buffer.ybase + buffer.scrollBottom, 1);\n      buffer.lines.splice(buffer.ybase + buffer.scrollTop, 0, buffer.getBlankLine(DEFAULT_ATTR_DATA));\n    }\n    this._dirtyRowService.markRangeDirty(buffer.scrollTop, buffer.scrollBottom);\n  }\n\n  /**\n   * CSI Ps SP @  Scroll left Ps columns (default = 1) (SL) ECMA-48\n   *\n   * Notation: (Pn)\n   * Representation: CSI Pn 02/00 04/00\n   * Parameter default value: Pn = 1\n   * SL causes the data in the presentation component to be moved by n character positions\n   * if the line orientation is horizontal, or by n line positions if the line orientation\n   * is vertical, such that the data appear to move to the left; where n equals the value of Pn.\n   * The active presentation position is not affected by this control function.\n   *\n   * Supported:\n   *   - always left shift (no line orientation setting respected)\n   */\n  public scrollLeft(params: IParams): void {\n    const buffer = this._bufferService.buffer;\n    if (buffer.y > buffer.scrollBottom || buffer.y < buffer.scrollTop) {\n      return;\n    }\n    const param = params.params[0] || 1;\n    for (let y = buffer.scrollTop; y <= buffer.scrollBottom; ++y) {\n      const line = buffer.lines.get(buffer.ybase + y);\n      line.deleteCells(0, param, buffer.getNullCell(this._terminal.eraseAttrData()));\n      line.isWrapped = false;\n    }\n    this._dirtyRowService.markRangeDirty(buffer.scrollTop, buffer.scrollBottom);\n  }\n\n  /**\n   * CSI Ps SP A  Scroll right Ps columns (default = 1) (SR) ECMA-48\n   *\n   * Notation: (Pn)\n   * Representation: CSI Pn 02/00 04/01\n   * Parameter default value: Pn = 1\n   * SR causes the data in the presentation component to be moved by n character positions\n   * if the line orientation is horizontal, or by n line positions if the line orientation\n   * is vertical, such that the data appear to move to the right; where n equals the value of Pn.\n   * The active presentation position is not affected by this control function.\n   *\n   * Supported:\n   *   - always right shift (no line orientation setting respected)\n   */\n  public scrollRight(params: IParams): void {\n    const buffer = this._bufferService.buffer;\n    if (buffer.y > buffer.scrollBottom || buffer.y < buffer.scrollTop) {\n      return;\n    }\n    const param = params.params[0] || 1;\n    for (let y = buffer.scrollTop; y <= buffer.scrollBottom; ++y) {\n      const line = buffer.lines.get(buffer.ybase + y);\n      line.insertCells(0, param, buffer.getNullCell(this._terminal.eraseAttrData()));\n      line.isWrapped = false;\n    }\n    this._dirtyRowService.markRangeDirty(buffer.scrollTop, buffer.scrollBottom);\n  }\n\n  /**\n   * CSI Pm ' }\n   * Insert Ps Column(s) (default = 1) (DECIC), VT420 and up.\n   */\n  public insertColumns(params: IParams): void {\n    const buffer = this._bufferService.buffer;\n    if (buffer.y > buffer.scrollBottom || buffer.y < buffer.scrollTop) {\n      return;\n    }\n    const param = params.params[0] || 1;\n    for (let y = buffer.scrollTop; y <= buffer.scrollBottom; ++y) {\n      const line = this._bufferService.buffer.lines.get(buffer.ybase + y);\n      line.insertCells(buffer.x, param, buffer.getNullCell(this._terminal.eraseAttrData()));\n      line.isWrapped = false;\n    }\n    this._dirtyRowService.markRangeDirty(buffer.scrollTop, buffer.scrollBottom);\n  }\n\n  /**\n   * CSI Pm ' ~\n   * Delete Ps Column(s) (default = 1) (DECDC), VT420 and up.\n   */\n  public deleteColumns(params: IParams): void {\n    const buffer = this._bufferService.buffer;\n    if (buffer.y > buffer.scrollBottom || buffer.y < buffer.scrollTop) {\n      return;\n    }\n    const param = params.params[0] || 1;\n    for (let y = buffer.scrollTop; y <= buffer.scrollBottom; ++y) {\n      const line = buffer.lines.get(buffer.ybase + y);\n      line.deleteCells(buffer.x, param, buffer.getNullCell(this._terminal.eraseAttrData()));\n      line.isWrapped = false;\n    }\n    this._dirtyRowService.markRangeDirty(buffer.scrollTop, buffer.scrollBottom);\n  }\n\n  /**\n   * CSI Ps X\n   * Erase Ps Character(s) (default = 1) (ECH).\n   */\n  public eraseChars(params: IParams): void {\n    this._restrictCursor();\n    const line = this._bufferService.buffer.lines.get(this._bufferService.buffer.y + this._bufferService.buffer.ybase);\n    if (line) {\n      line.replaceCells(\n        this._bufferService.buffer.x,\n        this._bufferService.buffer.x + (params.params[0] || 1),\n        this._bufferService.buffer.getNullCell(this._terminal.eraseAttrData())\n      );\n      this._dirtyRowService.markDirty(this._bufferService.buffer.y);\n    }\n  }\n\n  /**\n   * CSI Ps b  Repeat the preceding graphic character Ps times (REP).\n   * From ECMA 48 (@see http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf)\n   *    Notation: (Pn)\n   *    Representation: CSI Pn 06/02\n   *    Parameter default value: Pn = 1\n   *    REP is used to indicate that the preceding character in the data stream,\n   *    if it is a graphic character (represented by one or more bit combinations) including SPACE,\n   *    is to be repeated n times, where n equals the value of Pn.\n   *    If the character preceding REP is a control function or part of a control function,\n   *    the effect of REP is not defined by this Standard.\n   *\n   * Since we propagate the terminal as xterm-256color we have to follow xterm's behavior:\n   *    - fullwidth + surrogate chars are ignored\n   *    - for combining chars only the base char gets repeated\n   *    - text attrs are applied normally\n   *    - wrap around is respected\n   *    - any valid sequence resets the carried forward char\n   *\n   * Note: To get reset on a valid sequence working correctly without much runtime penalty,\n   * the preceding codepoint is stored on the parser in `this.print` and reset during `parser.parse`.\n   */\n  public repeatPrecedingCharacter(params: IParams): void {\n    if (!this._parser.precedingCodepoint) {\n      return;\n    }\n    // call print to insert the chars and handle correct wrapping\n    const length = params.params[0] || 1;\n    const data = new Uint32Array(length);\n    for (let i = 0; i < length; ++i) {\n      data[i] = this._parser.precedingCodepoint;\n    }\n    this.print(data, 0, data.length);\n  }\n\n  /**\n   * CSI Ps c  Send Device Attributes (Primary DA).\n   *     Ps = 0  or omitted -> request attributes from terminal.  The\n   *     response depends on the decTerminalID resource setting.\n   *     -> CSI ? 1 ; 2 c  (``VT100 with Advanced Video Option'')\n   *     -> CSI ? 1 ; 0 c  (``VT101 with No Options'')\n   *     -> CSI ? 6 c  (``VT102'')\n   *     -> CSI ? 6 0 ; 1 ; 2 ; 6 ; 8 ; 9 ; 1 5 ; c  (``VT220'')\n   *   The VT100-style response parameters do not mean anything by\n   *   themselves.  VT220 parameters do, telling the host what fea-\n   *   tures the terminal supports:\n   *     Ps = 1  -> 132-columns.\n   *     Ps = 2  -> Printer.\n   *     Ps = 6  -> Selective erase.\n   *     Ps = 8  -> User-defined keys.\n   *     Ps = 9  -> National replacement character sets.\n   *     Ps = 1 5  -> Technical characters.\n   *     Ps = 2 2  -> ANSI color, e.g., VT525.\n   *     Ps = 2 9  -> ANSI text locator (i.e., DEC Locator mode).\n   * CSI > Ps c\n   *   Send Device Attributes (Secondary DA).\n   *     Ps = 0  or omitted -> request the terminal's identification\n   *     code.  The response depends on the decTerminalID resource set-\n   *     ting.  It should apply only to VT220 and up, but xterm extends\n   *     this to VT100.\n   *     -> CSI  > Pp ; Pv ; Pc c\n   *   where Pp denotes the terminal type\n   *     Pp = 0  -> ``VT100''.\n   *     Pp = 1  -> ``VT220''.\n   *   and Pv is the firmware version (for xterm, this was originally\n   *   the XFree86 patch number, starting with 95).  In a DEC termi-\n   *   nal, Pc indicates the ROM cartridge registration number and is\n   *   always zero.\n   * More information:\n   *   xterm/charproc.c - line 2012, for more information.\n   *   vim responds with ^[[?0c or ^[[?1c after the terminal's response (?)\n   */\n  public sendDeviceAttributesPrimary(params: IParams): void {\n    if (params.params[0] > 0) {\n      return;\n    }\n    if (this._terminal.is('xterm') || this._terminal.is('rxvt-unicode') || this._terminal.is('screen')) {\n      this._coreService.triggerDataEvent(C0.ESC + '[?1;2c');\n    } else if (this._terminal.is('linux')) {\n      this._coreService.triggerDataEvent(C0.ESC + '[?6c');\n    }\n  }\n  public sendDeviceAttributesSecondary(params: IParams): void {\n    if (params.params[0] > 0) {\n      return;\n    }\n    // xterm and urxvt\n    // seem to spit this\n    // out around ~370 times (?).\n    if (this._terminal.is('xterm')) {\n      this._coreService.triggerDataEvent(C0.ESC + '[>0;276;0c');\n    } else if (this._terminal.is('rxvt-unicode')) {\n      this._coreService.triggerDataEvent(C0.ESC + '[>85;95;0c');\n    } else if (this._terminal.is('linux')) {\n      // not supported by linux console.\n      // linux console echoes parameters.\n      this._coreService.triggerDataEvent(params.params[0] + 'c');\n    } else if (this._terminal.is('screen')) {\n      this._coreService.triggerDataEvent(C0.ESC + '[>83;40003;0c');\n    }\n  }\n\n  /**\n   * CSI Pm h  Set Mode (SM).\n   *     Ps = 2  -> Keyboard Action Mode (AM).\n   *     Ps = 4  -> Insert Mode (IRM).\n   *     Ps = 1 2  -> Send/receive (SRM).\n   *     Ps = 2 0  -> Automatic Newline (LNM).\n   * CSI ? Pm h\n   *   DEC Private Mode Set (DECSET).\n   *     Ps = 1  -> Application Cursor Keys (DECCKM).\n   *     Ps = 2  -> Designate USASCII for character sets G0-G3\n   *     (DECANM), and set VT100 mode.\n   *     Ps = 3  -> 132 Column Mode (DECCOLM).\n   *     Ps = 4  -> Smooth (Slow) Scroll (DECSCLM).\n   *     Ps = 5  -> Reverse Video (DECSCNM).\n   *     Ps = 6  -> Origin Mode (DECOM).\n   *     Ps = 7  -> Wraparound Mode (DECAWM).\n   *     Ps = 8  -> Auto-repeat Keys (DECARM).\n   *     Ps = 9  -> Send Mouse X & Y on button press.  See the sec-\n   *     tion Mouse Tracking.\n   *     Ps = 1 0  -> Show toolbar (rxvt).\n   *     Ps = 1 2  -> Start Blinking Cursor (att610).\n   *     Ps = 1 8  -> Print form feed (DECPFF).\n   *     Ps = 1 9  -> Set print extent to full screen (DECPEX).\n   *     Ps = 2 5  -> Show Cursor (DECTCEM).\n   *     Ps = 3 0  -> Show scrollbar (rxvt).\n   *     Ps = 3 5  -> Enable font-shifting functions (rxvt).\n   *     Ps = 3 8  -> Enter Tektronix Mode (DECTEK).\n   *     Ps = 4 0  -> Allow 80 -> 132 Mode.\n   *     Ps = 4 1  -> more(1) fix (see curses resource).\n   *     Ps = 4 2  -> Enable Nation Replacement Character sets (DECN-\n   *     RCM).\n   *     Ps = 4 4  -> Turn On Margin Bell.\n   *     Ps = 4 5  -> Reverse-wraparound Mode.\n   *     Ps = 4 6  -> Start Logging.  This is normally disabled by a\n   *     compile-time option.\n   *     Ps = 4 7  -> Use Alternate Screen Buffer.  (This may be dis-\n   *     abled by the titeInhibit resource).\n   *     Ps = 6 6  -> Application keypad (DECNKM).\n   *     Ps = 6 7  -> Backarrow key sends backspace (DECBKM).\n   *     Ps = 1 0 0 0  -> Send Mouse X & Y on button press and\n   *     release.  See the section Mouse Tracking.\n   *     Ps = 1 0 0 1  -> Use Hilite Mouse Tracking.\n   *     Ps = 1 0 0 2  -> Use Cell Motion Mouse Tracking.\n   *     Ps = 1 0 0 3  -> Use All Motion Mouse Tracking.\n   *     Ps = 1 0 0 4  -> Send FocusIn/FocusOut events.\n   *     Ps = 1 0 0 5  -> Enable Extended Mouse Mode.\n   *     Ps = 1 0 1 0  -> Scroll to bottom on tty output (rxvt).\n   *     Ps = 1 0 1 1  -> Scroll to bottom on key press (rxvt).\n   *     Ps = 1 0 3 4  -> Interpret \"meta\" key, sets eighth bit.\n   *     (enables the eightBitInput resource).\n   *     Ps = 1 0 3 5  -> Enable special modifiers for Alt and Num-\n   *     Lock keys.  (This enables the numLock resource).\n   *     Ps = 1 0 3 6  -> Send ESC   when Meta modifies a key.  (This\n   *     enables the metaSendsEscape resource).\n   *     Ps = 1 0 3 7  -> Send DEL from the editing-keypad Delete\n   *     key.\n   *     Ps = 1 0 3 9  -> Send ESC  when Alt modifies a key.  (This\n   *     enables the altSendsEscape resource).\n   *     Ps = 1 0 4 0  -> Keep selection even if not highlighted.\n   *     (This enables the keepSelection resource).\n   *     Ps = 1 0 4 1  -> Use the CLIPBOARD selection.  (This enables\n   *     the selectToClipboard resource).\n   *     Ps = 1 0 4 2  -> Enable Urgency window manager hint when\n   *     Control-G is received.  (This enables the bellIsUrgent\n   *     resource).\n   *     Ps = 1 0 4 3  -> Enable raising of the window when Control-G\n   *     is received.  (enables the popOnBell resource).\n   *     Ps = 1 0 4 7  -> Use Alternate Screen Buffer.  (This may be\n   *     disabled by the titeInhibit resource).\n   *     Ps = 1 0 4 8  -> Save cursor as in DECSC.  (This may be dis-\n   *     abled by the titeInhibit resource).\n   *     Ps = 1 0 4 9  -> Save cursor as in DECSC and use Alternate\n   *     Screen Buffer, clearing it first.  (This may be disabled by\n   *     the titeInhibit resource).  This combines the effects of the 1\n   *     0 4 7  and 1 0 4 8  modes.  Use this with terminfo-based\n   *     applications rather than the 4 7  mode.\n   *     Ps = 1 0 5 0  -> Set terminfo/termcap function-key mode.\n   *     Ps = 1 0 5 1  -> Set Sun function-key mode.\n   *     Ps = 1 0 5 2  -> Set HP function-key mode.\n   *     Ps = 1 0 5 3  -> Set SCO function-key mode.\n   *     Ps = 1 0 6 0  -> Set legacy keyboard emulation (X11R6).\n   *     Ps = 1 0 6 1  -> Set VT220 keyboard emulation.\n   *     Ps = 2 0 0 4  -> Set bracketed paste mode.\n   * Modes:\n   *   http: *vt100.net/docs/vt220-rm/chapter4.html\n   */\n  public setMode(params: IParams): void {\n    for (let i = 0; i < params.length; i++) {\n      switch (params.params[i]) {\n        case 4:\n          this._terminal.insertMode = true;\n          break;\n        case 20:\n          // this._t.convertEol = true;\n          break;\n      }\n    }\n  }\n  public setModePrivate(params: IParams): void {\n    for (let i = 0; i < params.length; i++) {\n      switch (params.params[i]) {\n        case 1:\n          this._coreService.decPrivateModes.applicationCursorKeys = true;\n          break;\n        case 2:\n          this._terminal.setgCharset(0, DEFAULT_CHARSET);\n          this._terminal.setgCharset(1, DEFAULT_CHARSET);\n          this._terminal.setgCharset(2, DEFAULT_CHARSET);\n          this._terminal.setgCharset(3, DEFAULT_CHARSET);\n          // set VT100 mode here\n          break;\n        case 3: // 132 col mode\n          // TODO: move DECCOLM into compat addon\n          this._terminal.savedCols = this._bufferService.cols;\n          this._terminal.resize(132, this._bufferService.rows);\n          this._terminal.reset();\n          break;\n        case 6:\n          this._terminal.originMode = true;\n          this._setCursor(0, 0);\n          break;\n        case 7:\n          this._terminal.wraparoundMode = true;\n          break;\n        case 12:\n          // this.cursorBlink = true;\n          break;\n        case 66:\n          this._logService.debug('Serial port requested application keypad.');\n          this._terminal.applicationKeypad = true;\n          if (this._terminal.viewport) {\n            this._terminal.viewport.syncScrollArea();\n          }\n          break;\n        case 9: // X10 Mouse\n          // no release, no motion, no wheel, no modifiers.\n          this._coreMouseService.activeProtocol = 'X10';\n          break;\n        case 1000: // vt200 mouse\n          // no motion.\n          this._coreMouseService.activeProtocol = 'VT200';\n          break;\n        case 1002: // button event mouse\n          this._coreMouseService.activeProtocol = 'DRAG';\n          break;\n        case 1003: // any event mouse\n          // any event - sends motion events,\n          // even if there is no button held down.\n          this._coreMouseService.activeProtocol = 'ANY';\n          break;\n        case 1004: // send focusin/focusout events\n          // focusin: ^[[I\n          // focusout: ^[[O\n          this._terminal.sendFocus = true;\n          break;\n        case 1005: // utf8 ext mode mouse - removed in #2507\n          this._logService.debug('DECSET 1005 not supported (see #2507)');\n          break;\n        case 1006: // sgr ext mode mouse\n          this._coreMouseService.activeEncoding = 'SGR';\n          break;\n        case 1015: // urxvt ext mode mouse - removed in #2507\n          this._logService.debug('DECSET 1015 not supported (see #2507)');\n          break;\n        case 25: // show cursor\n          this._terminal.cursorHidden = false;\n          break;\n        case 1048: // alt screen cursor\n          this.saveCursor();\n          break;\n        case 1049: // alt screen buffer cursor\n          this.saveCursor();\n          // FALL-THROUGH\n        case 47: // alt screen buffer\n        case 1047: // alt screen buffer\n          this._bufferService.buffers.activateAltBuffer(this._terminal.eraseAttrData());\n          this._terminal.refresh(0, this._bufferService.rows - 1);\n          if (this._terminal.viewport) {\n            this._terminal.viewport.syncScrollArea();\n          }\n          this._terminal.showCursor();\n          break;\n        case 2004: // bracketed paste mode (https://cirw.in/blog/bracketed-paste)\n          this._terminal.bracketedPasteMode = true;\n          break;\n      }\n    }\n  }\n\n\n  /**\n   * CSI Pm l  Reset Mode (RM).\n   *     Ps = 2  -> Keyboard Action Mode (AM).\n   *     Ps = 4  -> Replace Mode (IRM).\n   *     Ps = 1 2  -> Send/receive (SRM).\n   *     Ps = 2 0  -> Normal Linefeed (LNM).\n   * CSI ? Pm l\n   *   DEC Private Mode Reset (DECRST).\n   *     Ps = 1  -> Normal Cursor Keys (DECCKM).\n   *     Ps = 2  -> Designate VT52 mode (DECANM).\n   *     Ps = 3  -> 80 Column Mode (DECCOLM).\n   *     Ps = 4  -> Jump (Fast) Scroll (DECSCLM).\n   *     Ps = 5  -> Normal Video (DECSCNM).\n   *     Ps = 6  -> Normal Cursor Mode (DECOM).\n   *     Ps = 7  -> No Wraparound Mode (DECAWM).\n   *     Ps = 8  -> No Auto-repeat Keys (DECARM).\n   *     Ps = 9  -> Don't send Mouse X & Y on button press.\n   *     Ps = 1 0  -> Hide toolbar (rxvt).\n   *     Ps = 1 2  -> Stop Blinking Cursor (att610).\n   *     Ps = 1 8  -> Don't print form feed (DECPFF).\n   *     Ps = 1 9  -> Limit print to scrolling region (DECPEX).\n   *     Ps = 2 5  -> Hide Cursor (DECTCEM).\n   *     Ps = 3 0  -> Don't show scrollbar (rxvt).\n   *     Ps = 3 5  -> Disable font-shifting functions (rxvt).\n   *     Ps = 4 0  -> Disallow 80 -> 132 Mode.\n   *     Ps = 4 1  -> No more(1) fix (see curses resource).\n   *     Ps = 4 2  -> Disable Nation Replacement Character sets (DEC-\n   *     NRCM).\n   *     Ps = 4 4  -> Turn Off Margin Bell.\n   *     Ps = 4 5  -> No Reverse-wraparound Mode.\n   *     Ps = 4 6  -> Stop Logging.  (This is normally disabled by a\n   *     compile-time option).\n   *     Ps = 4 7  -> Use Normal Screen Buffer.\n   *     Ps = 6 6  -> Numeric keypad (DECNKM).\n   *     Ps = 6 7  -> Backarrow key sends delete (DECBKM).\n   *     Ps = 1 0 0 0  -> Don't send Mouse X & Y on button press and\n   *     release.  See the section Mouse Tracking.\n   *     Ps = 1 0 0 1  -> Don't use Hilite Mouse Tracking.\n   *     Ps = 1 0 0 2  -> Don't use Cell Motion Mouse Tracking.\n   *     Ps = 1 0 0 3  -> Don't use All Motion Mouse Tracking.\n   *     Ps = 1 0 0 4  -> Don't send FocusIn/FocusOut events.\n   *     Ps = 1 0 0 5  -> Disable Extended Mouse Mode.\n   *     Ps = 1 0 1 0  -> Don't scroll to bottom on tty output\n   *     (rxvt).\n   *     Ps = 1 0 1 1  -> Don't scroll to bottom on key press (rxvt).\n   *     Ps = 1 0 3 4  -> Don't interpret \"meta\" key.  (This disables\n   *     the eightBitInput resource).\n   *     Ps = 1 0 3 5  -> Disable special modifiers for Alt and Num-\n   *     Lock keys.  (This disables the numLock resource).\n   *     Ps = 1 0 3 6  -> Don't send ESC  when Meta modifies a key.\n   *     (This disables the metaSendsEscape resource).\n   *     Ps = 1 0 3 7  -> Send VT220 Remove from the editing-keypad\n   *     Delete key.\n   *     Ps = 1 0 3 9  -> Don't send ESC  when Alt modifies a key.\n   *     (This disables the altSendsEscape resource).\n   *     Ps = 1 0 4 0  -> Do not keep selection when not highlighted.\n   *     (This disables the keepSelection resource).\n   *     Ps = 1 0 4 1  -> Use the PRIMARY selection.  (This disables\n   *     the selectToClipboard resource).\n   *     Ps = 1 0 4 2  -> Disable Urgency window manager hint when\n   *     Control-G is received.  (This disables the bellIsUrgent\n   *     resource).\n   *     Ps = 1 0 4 3  -> Disable raising of the window when Control-\n   *     G is received.  (This disables the popOnBell resource).\n   *     Ps = 1 0 4 7  -> Use Normal Screen Buffer, clearing screen\n   *     first if in the Alternate Screen.  (This may be disabled by\n   *     the titeInhibit resource).\n   *     Ps = 1 0 4 8  -> Restore cursor as in DECRC.  (This may be\n   *     disabled by the titeInhibit resource).\n   *     Ps = 1 0 4 9  -> Use Normal Screen Buffer and restore cursor\n   *     as in DECRC.  (This may be disabled by the titeInhibit\n   *     resource).  This combines the effects of the 1 0 4 7  and 1 0\n   *     4 8  modes.  Use this with terminfo-based applications rather\n   *     than the 4 7  mode.\n   *     Ps = 1 0 5 0  -> Reset terminfo/termcap function-key mode.\n   *     Ps = 1 0 5 1  -> Reset Sun function-key mode.\n   *     Ps = 1 0 5 2  -> Reset HP function-key mode.\n   *     Ps = 1 0 5 3  -> Reset SCO function-key mode.\n   *     Ps = 1 0 6 0  -> Reset legacy keyboard emulation (X11R6).\n   *     Ps = 1 0 6 1  -> Reset keyboard emulation to Sun/PC style.\n   *     Ps = 2 0 0 4  -> Reset bracketed paste mode.\n   */\n  public resetMode(params: IParams): void {\n    for (let i = 0; i < params.length; i++) {\n      switch (params.params[i]) {\n        case 4:\n          this._terminal.insertMode = false;\n          break;\n        case 20:\n          // this._t.convertEol = false;\n          break;\n      }\n    }\n  }\n  public resetModePrivate(params: IParams): void {\n    for (let i = 0; i < params.length; i++) {\n      switch (params.params[i]) {\n        case 1:\n          this._coreService.decPrivateModes.applicationCursorKeys = false;\n          break;\n        case 3:\n          // TODO: move DECCOLM into compat addon\n          // Note: This impl currently does not enforce col 80, instead reverts\n          // to previous terminal width before entering DECCOLM 132\n          if (this._bufferService.cols === 132 && this._terminal.savedCols) {\n            this._terminal.resize(this._terminal.savedCols, this._bufferService.rows);\n          }\n          delete this._terminal.savedCols;\n          this._terminal.reset();\n          break;\n        case 6:\n          this._terminal.originMode = false;\n          this._setCursor(0, 0);\n          break;\n        case 7:\n          this._terminal.wraparoundMode = false;\n          break;\n        case 12:\n          // this.cursorBlink = false;\n          break;\n        case 66:\n          this._logService.debug('Switching back to normal keypad.');\n          this._terminal.applicationKeypad = false;\n          if (this._terminal.viewport) {\n            this._terminal.viewport.syncScrollArea();\n          }\n          break;\n        case 9: // X10 Mouse\n        case 1000: // vt200 mouse\n        case 1002: // button event mouse\n        case 1003: // any event mouse\n          this._coreMouseService.activeProtocol = 'NONE';\n          break;\n        case 1004: // send focusin/focusout events\n          this._terminal.sendFocus = false;\n          break;\n        case 1005: // utf8 ext mode mouse - removed in #2507\n          this._logService.debug('DECRST 1005 not supported (see #2507)');\n          break;\n        case 1006: // sgr ext mode mouse\n          this._coreMouseService.activeEncoding = 'DEFAULT';\n          break;\n        case 1015: // urxvt ext mode mouse - removed in #2507\n        this._logService.debug('DECRST 1015 not supported (see #2507)');\n          break;\n        case 25: // hide cursor\n          this._terminal.cursorHidden = true;\n          break;\n        case 1048: // alt screen cursor\n          this.restoreCursor();\n          break;\n        case 1049: // alt screen buffer cursor\n           // FALL-THROUGH\n        case 47: // normal screen buffer\n        case 1047: // normal screen buffer - clearing it first\n          // Ensure the selection manager has the correct buffer\n          this._bufferService.buffers.activateNormalBuffer();\n          if (params.params[i] === 1049) {\n            this.restoreCursor();\n          }\n          this._terminal.refresh(0, this._bufferService.rows - 1);\n          if (this._terminal.viewport) {\n            this._terminal.viewport.syncScrollArea();\n          }\n          this._terminal.showCursor();\n          break;\n        case 2004: // bracketed paste mode (https://cirw.in/blog/bracketed-paste)\n          this._terminal.bracketedPasteMode = false;\n          break;\n      }\n    }\n  }\n\n  /**\n   * Helper to extract and apply color params/subparams.\n   * Returns advance for params index.\n   */\n  private _extractColor(params: IParams, pos: number, attr: IAttributeData): number {\n    // normalize params\n    // meaning: [target, CM, ign, val, val, val]\n    // RGB    : [ 38/48,  2, ign,   r,   g,   b]\n    // P256   : [ 38/48,  5, ign,   v, ign, ign]\n    const accu = [0, 0, -1, 0, 0, 0];\n\n    // alignment placeholder for non color space sequences\n    let cSpace = 0;\n\n    // return advance we took in params\n    let advance = 0;\n\n    do {\n      accu[advance + cSpace] = params.params[pos + advance];\n      if (params.hasSubParams(pos + advance)) {\n        const subparams = params.getSubParams(pos + advance);\n        let i = 0;\n        do {\n          if (accu[1] === 5) {\n            cSpace = 1;\n          }\n          accu[advance + i + 1 + cSpace] = subparams[i];\n        } while (++i < subparams.length && i + advance + 1 + cSpace < accu.length);\n        break;\n      }\n      // exit early if can decide color mode with semicolons\n      if ((accu[1] === 5 && advance + cSpace >= 2)\n          || (accu[1] === 2 && advance + cSpace >= 5)) {\n        break;\n      }\n      // offset colorSpace slot for semicolon mode\n      if (accu[1]) {\n        cSpace = 1;\n      }\n    } while (++advance + pos < params.length && advance + cSpace < accu.length);\n\n    // set default values to 0\n    for (let i = 2; i < accu.length; ++i) {\n      if (accu[i] === -1) {\n        accu[i] = 0;\n      }\n    }\n\n    // apply colors\n    if (accu[0] === 38) {\n      if (accu[1] === 2) {\n        attr.fg |= Attributes.CM_RGB;\n        attr.fg &= ~Attributes.RGB_MASK;\n        attr.fg |= AttributeData.fromColorRGB([accu[3], accu[4], accu[5]]);\n      } else if (accu[1] === 5) {\n        attr.fg &= ~(Attributes.CM_MASK | Attributes.PCOLOR_MASK);\n        attr.fg |= Attributes.CM_P256 | (accu[3] & 0xff);\n      }\n    } else if (accu[0] === 48) {\n      if (accu[1] === 2) {\n        attr.bg |= Attributes.CM_RGB;\n        attr.bg &= ~Attributes.RGB_MASK;\n        attr.bg |= AttributeData.fromColorRGB([accu[3], accu[4], accu[5]]);\n      } else if (accu[1] === 5) {\n        attr.bg &= ~(Attributes.CM_MASK | Attributes.PCOLOR_MASK);\n        attr.bg |= Attributes.CM_P256 | (accu[3] & 0xff);\n      }\n    }\n\n    return advance;\n  }\n\n  /**\n   * CSI Pm m  Character Attributes (SGR).\n   *     Ps = 0  -> Normal (default).\n   *     Ps = 1  -> Bold.\n   *     Ps = 2  -> Faint, decreased intensity (ISO 6429).\n   *     Ps = 4  -> Underlined.\n   *     Ps = 5  -> Blink (appears as Bold).\n   *     Ps = 7  -> Inverse.\n   *     Ps = 8  -> Invisible, i.e., hidden (VT300).\n   *     Ps = 2 2  -> Normal (neither bold nor faint).\n   *     Ps = 2 4  -> Not underlined.\n   *     Ps = 2 5  -> Steady (not blinking).\n   *     Ps = 2 7  -> Positive (not inverse).\n   *     Ps = 2 8  -> Visible, i.e., not hidden (VT300).\n   *     Ps = 3 0  -> Set foreground color to Black.\n   *     Ps = 3 1  -> Set foreground color to Red.\n   *     Ps = 3 2  -> Set foreground color to Green.\n   *     Ps = 3 3  -> Set foreground color to Yellow.\n   *     Ps = 3 4  -> Set foreground color to Blue.\n   *     Ps = 3 5  -> Set foreground color to Magenta.\n   *     Ps = 3 6  -> Set foreground color to Cyan.\n   *     Ps = 3 7  -> Set foreground color to White.\n   *     Ps = 3 9  -> Set foreground color to default (original).\n   *     Ps = 4 0  -> Set background color to Black.\n   *     Ps = 4 1  -> Set background color to Red.\n   *     Ps = 4 2  -> Set background color to Green.\n   *     Ps = 4 3  -> Set background color to Yellow.\n   *     Ps = 4 4  -> Set background color to Blue.\n   *     Ps = 4 5  -> Set background color to Magenta.\n   *     Ps = 4 6  -> Set background color to Cyan.\n   *     Ps = 4 7  -> Set background color to White.\n   *     Ps = 4 9  -> Set background color to default (original).\n   *\n   *   If 16-color support is compiled, the following apply.  Assume\n   *   that xterm's resources are set so that the ISO color codes are\n   *   the first 8 of a set of 16.  Then the aixterm colors are the\n   *   bright versions of the ISO colors:\n   *     Ps = 9 0  -> Set foreground color to Black.\n   *     Ps = 9 1  -> Set foreground color to Red.\n   *     Ps = 9 2  -> Set foreground color to Green.\n   *     Ps = 9 3  -> Set foreground color to Yellow.\n   *     Ps = 9 4  -> Set foreground color to Blue.\n   *     Ps = 9 5  -> Set foreground color to Magenta.\n   *     Ps = 9 6  -> Set foreground color to Cyan.\n   *     Ps = 9 7  -> Set foreground color to White.\n   *     Ps = 1 0 0  -> Set background color to Black.\n   *     Ps = 1 0 1  -> Set background color to Red.\n   *     Ps = 1 0 2  -> Set background color to Green.\n   *     Ps = 1 0 3  -> Set background color to Yellow.\n   *     Ps = 1 0 4  -> Set background color to Blue.\n   *     Ps = 1 0 5  -> Set background color to Magenta.\n   *     Ps = 1 0 6  -> Set background color to Cyan.\n   *     Ps = 1 0 7  -> Set background color to White.\n   *\n   *   If xterm is compiled with the 16-color support disabled, it\n   *   supports the following, from rxvt:\n   *     Ps = 1 0 0  -> Set foreground and background color to\n   *     default.\n   *\n   *   If 88- or 256-color support is compiled, the following apply.\n   *     Ps = 3 8  ; 5  ; Ps -> Set foreground color to the second\n   *     Ps.\n   *     Ps = 4 8  ; 5  ; Ps -> Set background color to the second\n   *     Ps.\n   */\n  public charAttributes(params: IParams): void {\n    // Optimize a single SGR0.\n    if (params.length === 1 && params.params[0] === 0) {\n      this._terminal.curAttrData.fg = DEFAULT_ATTR_DATA.fg;\n      this._terminal.curAttrData.bg = DEFAULT_ATTR_DATA.bg;\n      return;\n    }\n\n    const l = params.length;\n    let p;\n    const attr = this._terminal.curAttrData;\n\n    for (let i = 0; i < l; i++) {\n      p = params.params[i];\n      if (p >= 30 && p <= 37) {\n        // fg color 8\n        attr.fg &= ~(Attributes.CM_MASK | Attributes.PCOLOR_MASK);\n        attr.fg |= Attributes.CM_P16 | (p - 30);\n      } else if (p >= 40 && p <= 47) {\n        // bg color 8\n        attr.bg &= ~(Attributes.CM_MASK | Attributes.PCOLOR_MASK);\n        attr.bg |= Attributes.CM_P16 | (p - 40);\n      } else if (p >= 90 && p <= 97) {\n        // fg color 16\n        attr.fg &= ~(Attributes.CM_MASK | Attributes.PCOLOR_MASK);\n        attr.fg |= Attributes.CM_P16 | (p - 90) | 8;\n      } else if (p >= 100 && p <= 107) {\n        // bg color 16\n        attr.bg &= ~(Attributes.CM_MASK | Attributes.PCOLOR_MASK);\n        attr.bg |= Attributes.CM_P16 | (p - 100) | 8;\n      } else if (p === 0) {\n        // default\n        attr.fg = DEFAULT_ATTR_DATA.fg;\n        attr.bg = DEFAULT_ATTR_DATA.bg;\n      } else if (p === 1) {\n        // bold text\n        attr.fg |= FgFlags.BOLD;\n      } else if (p === 3) {\n        // italic text\n        attr.bg |= BgFlags.ITALIC;\n      } else if (p === 4) {\n        // underlined text\n        attr.fg |= FgFlags.UNDERLINE;\n      } else if (p === 5) {\n        // blink\n        attr.fg |= FgFlags.BLINK;\n      } else if (p === 7) {\n        // inverse and positive\n        // test with: echo -e '\\e[31m\\e[42mhello\\e[7mworld\\e[27mhi\\e[m'\n        attr.fg |= FgFlags.INVERSE;\n      } else if (p === 8) {\n        // invisible\n        attr.fg |= FgFlags.INVISIBLE;\n      } else if (p === 2) {\n        // dimmed text\n        attr.bg |= BgFlags.DIM;\n      } else if (p === 22) {\n        // not bold nor faint\n        attr.fg &= ~FgFlags.BOLD;\n        attr.bg &= ~BgFlags.DIM;\n      } else if (p === 23) {\n        // not italic\n        attr.bg &= ~BgFlags.ITALIC;\n      } else if (p === 24) {\n        // not underlined\n        attr.fg &= ~FgFlags.UNDERLINE;\n      } else if (p === 25) {\n        // not blink\n        attr.fg &= ~FgFlags.BLINK;\n      } else if (p === 27) {\n        // not inverse\n        attr.fg &= ~FgFlags.INVERSE;\n      } else if (p === 28) {\n        // not invisible\n        attr.fg &= ~FgFlags.INVISIBLE;\n      } else if (p === 39) {\n        // reset fg\n        attr.fg &= ~(Attributes.CM_MASK | Attributes.RGB_MASK);\n        attr.fg |= DEFAULT_ATTR_DATA.fg & (Attributes.PCOLOR_MASK | Attributes.RGB_MASK);\n      } else if (p === 49) {\n        // reset bg\n        attr.bg &= ~(Attributes.CM_MASK | Attributes.RGB_MASK);\n        attr.bg |= DEFAULT_ATTR_DATA.bg & (Attributes.PCOLOR_MASK | Attributes.RGB_MASK);\n      } else if (p === 38 || p === 48) {\n        // fg color 256 and RGB\n        i += this._extractColor(params, i, attr);\n      } else if (p === 100) {\n        // reset fg/bg\n        attr.fg &= ~(Attributes.CM_MASK | Attributes.RGB_MASK);\n        attr.fg |= DEFAULT_ATTR_DATA.fg & (Attributes.PCOLOR_MASK | Attributes.RGB_MASK);\n        attr.bg &= ~(Attributes.CM_MASK | Attributes.RGB_MASK);\n        attr.bg |= DEFAULT_ATTR_DATA.bg & (Attributes.PCOLOR_MASK | Attributes.RGB_MASK);\n      } else {\n        this._logService.debug('Unknown SGR attribute: %d.', p);\n      }\n    }\n  }\n\n  /**\n   * CSI Ps n  Device Status Report (DSR).\n   *     Ps = 5  -> Status Report.  Result (``OK'') is\n   *   CSI 0 n\n   *     Ps = 6  -> Report Cursor Position (CPR) [row;column].\n   *   Result is\n   *   CSI r ; c R\n   * CSI ? Ps n\n   *   Device Status Report (DSR, DEC-specific).\n   *     Ps = 6  -> Report Cursor Position (CPR) [row;column] as CSI\n   *     ? r ; c R (assumes page is zero).\n   *     Ps = 1 5  -> Report Printer status as CSI ? 1 0  n  (ready).\n   *     or CSI ? 1 1  n  (not ready).\n   *     Ps = 2 5  -> Report UDK status as CSI ? 2 0  n  (unlocked)\n   *     or CSI ? 2 1  n  (locked).\n   *     Ps = 2 6  -> Report Keyboard status as\n   *   CSI ? 2 7  ;  1  ;  0  ;  0  n  (North American).\n   *   The last two parameters apply to VT400 & up, and denote key-\n   *   board ready and LK01 respectively.\n   *     Ps = 5 3  -> Report Locator status as\n   *   CSI ? 5 3  n  Locator available, if compiled-in, or\n   *   CSI ? 5 0  n  No Locator, if not.\n   */\n  public deviceStatus(params: IParams): void {\n    switch (params.params[0]) {\n      case 5:\n        // status report\n        this._coreService.triggerDataEvent(`${C0.ESC}[0n`);\n        break;\n      case 6:\n        // cursor position\n        const y = this._bufferService.buffer.y + 1;\n        const x = this._bufferService.buffer.x + 1;\n        this._coreService.triggerDataEvent(`${C0.ESC}[${y};${x}R`);\n        break;\n    }\n  }\n\n  public deviceStatusPrivate(params: IParams): void {\n    // modern xterm doesnt seem to\n    // respond to any of these except ?6, 6, and 5\n    switch (params.params[0]) {\n      case 6:\n        // cursor position\n        const y = this._bufferService.buffer.y + 1;\n        const x = this._bufferService.buffer.x + 1;\n        this._coreService.triggerDataEvent(`${C0.ESC}[?${y};${x}R`);\n        break;\n      case 15:\n        // no printer\n        // this.handler(C0.ESC + '[?11n');\n        break;\n      case 25:\n        // dont support user defined keys\n        // this.handler(C0.ESC + '[?21n');\n        break;\n      case 26:\n        // north american keyboard\n        // this.handler(C0.ESC + '[?27;1;0;0n');\n        break;\n      case 53:\n        // no dec locator/mouse\n        // this.handler(C0.ESC + '[?50n');\n        break;\n    }\n  }\n\n  /**\n   * CSI ! p   Soft terminal reset (DECSTR).\n   * http://vt100.net/docs/vt220-rm/table4-10.html\n   */\n  public softReset(params: IParams): void {\n    this._terminal.cursorHidden = false;\n    this._terminal.insertMode = false;\n    this._terminal.originMode = false;\n    this._terminal.wraparoundMode = true;  // defaults: xterm - true, vt100 - false\n    this._terminal.applicationKeypad = false; // ?\n    if (this._terminal.viewport) {\n      this._terminal.viewport.syncScrollArea();\n    }\n    this._coreService.decPrivateModes.applicationCursorKeys = false;\n    this._bufferService.buffer.scrollTop = 0;\n    this._bufferService.buffer.scrollBottom = this._bufferService.rows - 1;\n    this._terminal.curAttrData = DEFAULT_ATTR_DATA.clone();\n    this._bufferService.buffer.x = this._bufferService.buffer.y = 0; // ?\n    this._terminal.charset = null;\n    this._terminal.glevel = 0; // ??\n    this._terminal.charsets = [null]; // ??\n  }\n\n  /**\n   * CSI Ps SP q  Set cursor style (DECSCUSR, VT520).\n   *   Ps = 0  -> blinking block.\n   *   Ps = 1  -> blinking block (default).\n   *   Ps = 2  -> steady block.\n   *   Ps = 3  -> blinking underline.\n   *   Ps = 4  -> steady underline.\n   *   Ps = 5  -> blinking bar (xterm).\n   *   Ps = 6  -> steady bar (xterm).\n   */\n  public setCursorStyle(params: IParams): void {\n    const param = params.params[0] || 1;\n    switch (param) {\n      case 1:\n      case 2:\n        this._optionsService.options.cursorStyle = 'block';\n        break;\n      case 3:\n      case 4:\n        this._optionsService.options.cursorStyle = 'underline';\n        break;\n      case 5:\n      case 6:\n        this._optionsService.options.cursorStyle = 'bar';\n        break;\n    }\n    const isBlinking = param % 2 === 1;\n    this._optionsService.options.cursorBlink = isBlinking;\n  }\n\n  /**\n   * CSI Ps ; Ps r\n   *   Set Scrolling Region [top;bottom] (default = full size of win-\n   *   dow) (DECSTBM).\n   */\n  public setScrollRegion(params: IParams): void {\n    const top = params.params[0] || 1;\n    let bottom: number;\n\n    if (params.length < 2 || (bottom = params.params[1]) >  this._bufferService.rows || bottom === 0) {\n      bottom = this._bufferService.rows;\n    }\n\n    if (bottom > top) {\n      this._bufferService.buffer.scrollTop = top - 1;\n      this._bufferService.buffer.scrollBottom = bottom - 1;\n      this._setCursor(0, 0);\n    }\n  }\n\n\n  /**\n   * CSI s\n   * ESC 7\n   *   Save cursor (ANSI.SYS).\n   */\n  public saveCursor(params?: IParams): void {\n    this._bufferService.buffer.savedX = this._bufferService.buffer.x;\n    this._bufferService.buffer.savedY = this._bufferService.buffer.ybase + this._bufferService.buffer.y;\n    this._bufferService.buffer.savedCurAttrData.fg = this._terminal.curAttrData.fg;\n    this._bufferService.buffer.savedCurAttrData.bg = this._terminal.curAttrData.bg;\n    this._bufferService.buffer.savedCharset = this._terminal.charset;\n  }\n\n\n  /**\n   * CSI u\n   * ESC 8\n   *   Restore cursor (ANSI.SYS).\n   */\n  public restoreCursor(params?: IParams): void {\n    this._bufferService.buffer.x = this._bufferService.buffer.savedX || 0;\n    this._bufferService.buffer.y = Math.max(this._bufferService.buffer.savedY - this._bufferService.buffer.ybase, 0);\n    this._terminal.curAttrData.fg = this._bufferService.buffer.savedCurAttrData.fg;\n    this._terminal.curAttrData.bg = this._bufferService.buffer.savedCurAttrData.bg;\n    this._terminal.charset = (this as any)._savedCharset;\n    if (this._bufferService.buffer.savedCharset) {\n      this._terminal.charset = this._bufferService.buffer.savedCharset;\n    }\n    this._restrictCursor();\n  }\n\n\n  /**\n   * OSC 0; <data> ST (set icon name + window title)\n   * OSC 2; <data> ST (set window title)\n   *   Proxy to set window title. Icon name is not supported.\n   */\n  public setTitle(data: string): void {\n    this._terminal.handleTitle(data);\n  }\n\n  /**\n   * ESC E\n   * C1.NEL\n   *   DEC mnemonic: NEL (https://vt100.net/docs/vt510-rm/NEL)\n   *   Moves cursor to first position on next line.\n   */\n  public nextLine(): void {\n    this._bufferService.buffer.x = 0;\n    this.index();\n  }\n\n  /**\n   * ESC =\n   *   DEC mnemonic: DECKPAM (https://vt100.net/docs/vt510-rm/DECKPAM.html)\n   *   Enables the numeric keypad to send application sequences to the host.\n   */\n  public keypadApplicationMode(): void {\n    this._logService.debug('Serial port requested application keypad.');\n    this._terminal.applicationKeypad = true;\n    if (this._terminal.viewport) {\n      this._terminal.viewport.syncScrollArea();\n    }\n  }\n\n  /**\n   * ESC >\n   *   DEC mnemonic: DECKPNM (https://vt100.net/docs/vt510-rm/DECKPNM.html)\n   *   Enables the keypad to send numeric characters to the host.\n   */\n  public keypadNumericMode(): void {\n    this._logService.debug('Switching back to normal keypad.');\n    this._terminal.applicationKeypad = false;\n    if (this._terminal.viewport) {\n      this._terminal.viewport.syncScrollArea();\n    }\n  }\n\n  /**\n   * ESC % @\n   * ESC % G\n   *   Select default character set. UTF-8 is not supported (string are unicode anyways)\n   *   therefore ESC % G does the same.\n   */\n  public selectDefaultCharset(): void {\n    this._terminal.setgLevel(0);\n    this._terminal.setgCharset(0, DEFAULT_CHARSET); // US (default)\n  }\n\n  /**\n   * ESC ( C\n   *   Designate G0 Character Set, VT100, ISO 2022.\n   * ESC ) C\n   *   Designate G1 Character Set (ISO 2022, VT100).\n   * ESC * C\n   *   Designate G2 Character Set (ISO 2022, VT220).\n   * ESC + C\n   *   Designate G3 Character Set (ISO 2022, VT220).\n   * ESC - C\n   *   Designate G1 Character Set (VT300).\n   * ESC . C\n   *   Designate G2 Character Set (VT300).\n   * ESC / C\n   *   Designate G3 Character Set (VT300). C = A  -> ISO Latin-1 Supplemental. - Supported?\n   */\n  public selectCharset(collectAndFlag: string): void {\n    if (collectAndFlag.length !== 2) {\n      this.selectDefaultCharset();\n      return;\n    }\n    if (collectAndFlag[0] === '/') {\n      return;  // TODO: Is this supported?\n    }\n    this._terminal.setgCharset(GLEVEL[collectAndFlag[0]], CHARSETS[collectAndFlag[1]] || DEFAULT_CHARSET);\n    return;\n  }\n\n  /**\n   * ESC D\n   * C1.IND\n   *   DEC mnemonic: IND (https://vt100.net/docs/vt510-rm/IND.html)\n   *   Moves the cursor down one line in the same column.\n   */\n  public index(): void {\n    this._restrictCursor();\n    const buffer = this._bufferService.buffer;\n    this._bufferService.buffer.y++;\n    if (buffer.y === buffer.scrollBottom + 1) {\n      buffer.y--;\n      this._terminal.scroll();\n    } else if (buffer.y >= this._bufferService.rows) {\n      buffer.y = this._bufferService.rows - 1;\n    }\n    this._restrictCursor();\n  }\n\n  /**\n   * ESC H\n   * C1.HTS\n   *   DEC mnemonic: HTS (https://vt100.net/docs/vt510-rm/HTS.html)\n   *   Sets a horizontal tab stop at the column position indicated by\n   *   the value of the active column when the terminal receives an HTS.\n   */\n  public tabSet(): void {\n    this._bufferService.buffer.tabs[this._bufferService.buffer.x] = true;\n  }\n\n  /**\n   * ESC M\n   * C1.RI\n   *   DEC mnemonic: HTS\n   *   Moves the cursor up one line in the same column. If the cursor is at the top margin,\n   *   the page scrolls down.\n   */\n  public reverseIndex(): void {\n    this._restrictCursor();\n    const buffer = this._bufferService.buffer;\n    if (buffer.y === buffer.scrollTop) {\n      // possibly move the code below to term.reverseScroll();\n      // test: echo -ne '\\e[1;1H\\e[44m\\eM\\e[0m'\n      // blankLine(true) is xterm/linux behavior\n      const scrollRegionHeight = buffer.scrollBottom - buffer.scrollTop;\n      buffer.lines.shiftElements(buffer.y + buffer.ybase, scrollRegionHeight, 1);\n      buffer.lines.set(buffer.y + buffer.ybase, buffer.getBlankLine(this._terminal.eraseAttrData()));\n      this._dirtyRowService.markRangeDirty(buffer.scrollTop, buffer.scrollBottom);\n    } else {\n      buffer.y--;\n      this._restrictCursor(); // quickfix to not run out of bounds\n    }\n  }\n\n  /**\n   * ESC c\n   *   DEC mnemonic: RIS (https://vt100.net/docs/vt510-rm/RIS.html)\n   *   Reset to initial state.\n   */\n  public reset(): void {\n    this._parser.reset();\n    this._terminal.reset();  // TODO: save to move from terminal?\n  }\n\n  /**\n   * ESC n\n   * ESC o\n   * ESC |\n   * ESC }\n   * ESC ~\n   *   DEC mnemonic: LS (https://vt100.net/docs/vt510-rm/LS.html)\n   *   When you use a locking shift, the character set remains in GL or GR until\n   *   you use another locking shift. (partly supported)\n   */\n  public setgLevel(level: number): void {\n    this._terminal.setgLevel(level);  // TODO: save to move from terminal?\n  }\n\n  /**\n   * ESC # 8\n   *   DEC mnemonic: DECALN (https://vt100.net/docs/vt510-rm/DECALN.html)\n   *   This control function fills the complete screen area with\n   *   a test pattern (E) used for adjusting screen alignment.\n   *\n   * TODO: move DECALN into compat addon\n   */\n  public screenAlignmentPattern(): void {\n    // prepare cell data\n    const cell = new CellData();\n    cell.content = 1 << Content.WIDTH_SHIFT | 'E'.charCodeAt(0);\n    cell.fg = this._terminal.curAttrData.fg;\n    cell.bg = this._terminal.curAttrData.bg;\n\n    const buffer = this._bufferService.buffer;\n\n    this._setCursor(0, 0);\n    for (let yOffset = 0; yOffset < this._bufferService.rows; ++yOffset) {\n      const row = buffer.y + buffer.ybase + yOffset;\n      buffer.lines.get(row).fill(cell);\n      buffer.lines.get(row).isWrapped = false;\n    }\n    this._dirtyRowService.markAllDirty();\n    this._setCursor(0, 0);\n  }\n}\n","projectRootPath":"/home/daimms/dev/Tyriar/xterm.js","scriptKindName":"TS"},{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","fileContent":"/**\n * Copyright (c) 2017 The xterm.js authors. All rights reserved.\n * @license MIT\n */\n\nimport { TextRenderLayer } from '../browser/renderer/TextRenderLayer';\nimport { SelectionRenderLayer } from '../browser/renderer/SelectionRenderLayer';\nimport { CursorRenderLayer } from './CursorRenderLayer';\nimport { IRenderLayer, IRenderer, IRenderDimensions, CharacterJoinerHandler, ICharacterJoinerRegistry } from 'browser/renderer/Types';\nimport { ITerminal } from '../Types';\nimport { LinkRenderLayer } from '../browser/renderer/LinkRenderLayer';\nimport { CharacterJoinerRegistry } from 'browser/renderer/CharacterJoinerRegistry';\nimport { Disposable } from 'common/Lifecycle';\nimport { IColorSet } from 'browser/Types';\nimport { ICharSizeService } from 'browser/services/Services';\nimport { IBufferService, IOptionsService } from 'common/services/Services';\nimport { removeTerminalFromCache } from 'browser/renderer/atlas/CharAtlasCache';\n\nlet nextRendererId = 1;\n\nexport class Renderer extends Disposable implements IRenderer {\n  private _id = nextRendererId++;\n\n  private _renderLayers: IRenderLayer[];\n  private _devicePixelRatio: number;\n  private _characterJoinerRegistry: ICharacterJoinerRegistry;\n\n  public dimensions: IRenderDimensions;\n\n  constructor(\n    private _colors: IColorSet,\n    private readonly _terminal: ITerminal,\n    readonly bufferService: IBufferService,\n    private readonly _charSizeService: ICharSizeService,\n    readonly optionsService: IOptionsService\n  ) {\n    super();\n    const allowTransparency = this._terminal.options.allowTransparency;\n    this._characterJoinerRegistry = new CharacterJoinerRegistry(bufferService);\n\n    this._renderLayers = [\n      new TextRenderLayer(this._terminal.screenElement, 0, this._colors, this._characterJoinerRegistry, allowTransparency, this._id, bufferService, optionsService),\n      new SelectionRenderLayer(this._terminal.screenElement, 1, this._colors, this._id, bufferService, optionsService),\n      new LinkRenderLayer(this._terminal.screenElement, 2, this._colors, this._id, this._terminal.linkifier, bufferService, optionsService),\n      new CursorRenderLayer(this._terminal.screenElement, 3, this._colors, this._terminal, this._id, bufferService, optionsService)\n    ];\n    this.dimensions = {\n      scaledCharWidth: null,\n      scaledCharHeight: null,\n      scaledCellWidth: null,\n      scaledCellHeight: null,\n      scaledCharLeft: null,\n      scaledCharTop: null,\n      scaledCanvasWidth: null,\n      scaledCanvasHeight: null,\n      canvasWidth: null,\n      canvasHeight: null,\n      actualCellWidth: null,\n      actualCellHeight: null\n    };\n    this._devicePixelRatio = window.devicePixelRatio;\n    this._updateDimensions();\n    this.onOptionsChanged();\n  }\n\n  public dispose(): void {\n    super.dispose();\n    this._renderLayers.forEach(l => l.dispose());\n    removeTerminalFromCache(this._id);\n  }\n\n  public onDevicePixelRatioChange(): void {\n    // If the device pixel ratio changed, the char atlas needs to be regenerated\n    // and the terminal needs to refreshed\n    if (this._devicePixelRatio !== window.devicePixelRatio) {\n      this._devicePixelRatio = window.devicePixelRatio;\n      this.onResize(this._terminal.cols, this._terminal.rows);\n    }\n  }\n\n  public setColors(colors: IColorSet): void {\n    this._colors = colors;\n\n    // Clear layers and force a full render\n    this._renderLayers.forEach(l => {\n      l.setColors(this._colors);\n      l.reset();\n    });\n  }\n\n  public onResize(cols: number, rows: number): void {\n    // Update character and canvas dimensions\n    this._updateDimensions();\n\n    // Resize all render layers\n    this._renderLayers.forEach(l => l.resize(this.dimensions));\n\n    // Resize the screen\n    this._terminal.screenElement.style.width = `${this.dimensions.canvasWidth}px`;\n    this._terminal.screenElement.style.height = `${this.dimensions.canvasHeight}px`;\n  }\n\n  public onCharSizeChanged(): void {\n    this.onResize(this._terminal.cols, this._terminal.rows);\n  }\n\n  public onBlur(): void {\n    this._runOperation(l => l.onBlur());\n  }\n\n  public onFocus(): void {\n    this._runOperation(l => l.onFocus());\n  }\n\n  public onSelectionChanged(start: [number, number], end: [number, number], columnSelectMode: boolean = false): void {\n    this._runOperation(l => l.onSelectionChanged(start, end, columnSelectMode));\n  }\n\n  public onCursorMove(): void {\n    this._runOperation(l => l.onCursorMove());\n  }\n\n  public onOptionsChanged(): void {\n    this._runOperation(l => l.onOptionsChanged());\n  }\n\n  public clear(): void {\n    this._runOperation(l => l.reset());\n  }\n\n  private _runOperation(operation: (layer: IRenderLayer) => void): void {\n    this._renderLayers.forEach(l => operation(l));\n  }\n\n  /**\n   * Performs the refresh loop callback, calling refresh only if a refresh is\n   * necessary before queueing up the next one.\n   */\n  public renderRows(start: number, end: number): void {\n    this._renderLayers.forEach(l => l.onGridChanged(start, end));\n  }\n\n  /**\n   * Recalculates the character and canvas dimensions.\n   */\n  private _updateDimensions(): void {\n    if (!this._charSizeService.hasValidSize) {\n      return;\n    }\n\n    // Calculate the scaled character width. Width is floored as it must be\n    // drawn to an integer grid in order for the CharAtlas \"stamps\" to not be\n    // blurry. When text is drawn to the grid not using the CharAtlas, it is\n    // clipped to ensure there is no overlap with the next cell.\n    this.dimensions.scaledCharWidth = Math.floor(this._charSizeService.width * window.devicePixelRatio);\n\n    // Calculate the scaled character height. Height is ceiled in case\n    // devicePixelRatio is a floating point number in order to ensure there is\n    // enough space to draw the character to the cell.\n    this.dimensions.scaledCharHeight = Math.ceil(this._charSizeService.height * window.devicePixelRatio);\n\n    // Calculate the scaled cell height, if lineHeight is not 1 then the value\n    // will be floored because since lineHeight can never be lower then 1, there\n    // is a guarentee that the scaled line height will always be larger than\n    // scaled char height.\n    this.dimensions.scaledCellHeight = Math.floor(this.dimensions.scaledCharHeight * this._terminal.options.lineHeight);\n\n    // Calculate the y coordinate within a cell that text should draw from in\n    // order to draw in the center of a cell.\n    this.dimensions.scaledCharTop = this._terminal.options.lineHeight === 1 ? 0 : Math.round((this.dimensions.scaledCellHeight - this.dimensions.scaledCharHeight) / 2);\n\n    // Calculate the scaled cell width, taking the letterSpacing into account.\n    this.dimensions.scaledCellWidth = this.dimensions.scaledCharWidth + Math.round(this._terminal.options.letterSpacing);\n\n    // Calculate the x coordinate with a cell that text should draw from in\n    // order to draw in the center of a cell.\n    this.dimensions.scaledCharLeft = Math.floor(this._terminal.options.letterSpacing / 2);\n\n    // Recalculate the canvas dimensions; scaled* define the actual number of\n    // pixel in the canvas\n    this.dimensions.scaledCanvasHeight = this._terminal.rows * this.dimensions.scaledCellHeight;\n    this.dimensions.scaledCanvasWidth = this._terminal.cols * this.dimensions.scaledCellWidth;\n\n    // The the size of the canvas on the page. It's very important that this\n    // rounds to nearest integer and not ceils as browsers often set\n    // window.devicePixelRatio as something like 1.100000023841858, when it's\n    // actually 1.1. Ceiling causes blurriness as the backing canvas image is 1\n    // pixel too large for the canvas element size.\n    this.dimensions.canvasHeight = Math.round(this.dimensions.scaledCanvasHeight / window.devicePixelRatio);\n    this.dimensions.canvasWidth = Math.round(this.dimensions.scaledCanvasWidth / window.devicePixelRatio);\n\n    // Get the _actual_ dimensions of an individual cell. This needs to be\n    // derived from the canvasWidth/Height calculated above which takes into\n    // account window.devicePixelRatio. ICharSizeService.width/height by itself\n    // is insufficient when the page is not at 100% zoom level as it's measured\n    // in CSS pixels, but the actual char size on the canvas can differ.\n    this.dimensions.actualCellHeight = this.dimensions.canvasHeight / this._terminal.rows;\n    this.dimensions.actualCellWidth = this.dimensions.canvasWidth / this._terminal.cols;\n  }\n\n  public registerCharacterJoiner(handler: CharacterJoinerHandler): number {\n    return this._characterJoinerRegistry.registerCharacterJoiner(handler);\n  }\n\n  public deregisterCharacterJoiner(joinerId: number): boolean {\n    return this._characterJoinerRegistry.deregisterCharacterJoiner(joinerId);\n  }\n}\n","projectRootPath":"/home/daimms/dev/Tyriar/xterm.js","scriptKindName":"TS"}]}}
Info 14   [11:10:5.682] Search path: /home/daimms/dev/Tyriar/xterm.js/src/common/services
Info 15   [11:10:5.685] ConfigFilePresence:: Current Watches: :: File: /home/daimms/dev/Tyriar/xterm.js/src/common/services/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts Status: File added to open files impacted by this config file
Info 16   [11:10:5.685] ConfigFilePresence:: Current Watches: :: File: /home/daimms/dev/Tyriar/xterm.js/src/common/services/jsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts Status: File added to open files impacted by this config file
Info 17   [11:10:5.685] ConfigFilePresence:: Current Watches: :: File: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts Status: File added to open files impacted by this config file
Info 18   [11:10:5.685] For info: /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts :: Config file name: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json
Info 19   [11:10:5.685] Opened configuration file /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json
Info 20   [11:10:5.687] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json 2000 Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json WatchType: Config file
Info 21   [11:10:5.688] event:
    {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json","reason":"Creating possible configured project for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts to open"}}
Info 22   [11:10:5.709] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json WatchType: Wild card directory
Info 23   [11:10:5.712] Elapsed:: 3ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json WatchType: Wild card directory
Info 24   [11:10:5.712] Loading global plugin typescript-tslint-plugin
Info 25   [11:10:5.712] Enabling plugin typescript-tslint-plugin from candidate paths: /home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/tsserver.js/../../..,/home/daimms/.vscode-server-insiders/extensions/ms-vscode.vscode-typescript-tslint-plugin-1.2.2
Info 26   [11:10:5.712] Loading typescript-tslint-plugin from /home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/tsserver.js/../../.. (resolved to /home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/node_modules)
Info 27   [11:10:5.728] Loading typescript-tslint-plugin from /home/daimms/.vscode-server-insiders/extensions/ms-vscode.vscode-typescript-tslint-plugin-1.2.2 (resolved to /home/daimms/.vscode-server-insiders/extensions/ms-vscode.vscode-typescript-tslint-plugin-1.2.2/node_modules)
Info 28   [11:10:5.761] [typescript-tslint-plugin] "Create"
Info 29   [11:10:5.761] [typescript-tslint-plugin] "ConfigurationManager: Found configured project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json"
Info 30   [11:10:5.762] [typescript-tslint-plugin] "loaded"
Info 31   [11:10:5.762] Plugin validation succeded
Info 32   [11:10:5.764] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts 500 Project:  WatchType: Closed Script info
Info 33   [11:10:5.765] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.ts 500 Project:  WatchType: Closed Script info
Info 34   [11:10:5.765] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts 500 Project:  WatchType: Closed Script info
Info 35   [11:10:5.765] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.ts 500 Project:  WatchType: Closed Script info
Info 36   [11:10:5.766] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts 500 Project:  WatchType: Closed Script info
Info 37   [11:10:5.766] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/Clone.ts 500 Project:  WatchType: Closed Script info
Info 38   [11:10:5.766] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts 500 Project:  WatchType: Closed Script info
Info 39   [11:10:5.767] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.ts 500 Project:  WatchType: Closed Script info
Info 40   [11:10:5.767] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts 500 Project:  WatchType: Closed Script info
Info 41   [11:10:5.767] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.ts 500 Project:  WatchType: Closed Script info
Info 42   [11:10:5.768] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/Platform.ts 500 Project:  WatchType: Closed Script info
Info 43   [11:10:5.768] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/TestUtils.test.ts 500 Project:  WatchType: Closed Script info
Info 44   [11:10:5.768] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts 500 Project:  WatchType: Closed Script info
Info 45   [11:10:5.769] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.ts 500 Project:  WatchType: Closed Script info
Info 46   [11:10:5.769] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts 500 Project:  WatchType: Closed Script info
Info 47   [11:10:5.769] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/AttributeData.ts 500 Project:  WatchType: Closed Script info
Info 48   [11:10:5.770] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts 500 Project:  WatchType: Closed Script info
Info 49   [11:10:5.770] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.ts 500 Project:  WatchType: Closed Script info
Info 50   [11:10:5.770] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts 500 Project:  WatchType: Closed Script info
Info 51   [11:10:5.771] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.ts 500 Project:  WatchType: Closed Script info
Info 52   [11:10:5.771] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts 500 Project:  WatchType: Closed Script info
Info 53   [11:10:5.771] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.ts 500 Project:  WatchType: Closed Script info
Info 54   [11:10:5.771] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts 500 Project:  WatchType: Closed Script info
Info 55   [11:10:5.772] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.ts 500 Project:  WatchType: Closed Script info
Info 56   [11:10:5.772] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/CellData.ts 500 Project:  WatchType: Closed Script info
Info 57   [11:10:5.772] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Constants.ts 500 Project:  WatchType: Closed Script info
Info 58   [11:10:5.772] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Marker.ts 500 Project:  WatchType: Closed Script info
Info 59   [11:10:5.773] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts 500 Project:  WatchType: Closed Script info
Info 60   [11:10:5.773] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/data/Charsets.ts 500 Project:  WatchType: Closed Script info
Info 61   [11:10:5.773] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/data/EscapeSequences.ts 500 Project:  WatchType: Closed Script info
Info 62   [11:10:5.774] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts 500 Project:  WatchType: Closed Script info
Info 63   [11:10:5.774] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.ts 500 Project:  WatchType: Closed Script info
Info 64   [11:10:5.774] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts 500 Project:  WatchType: Closed Script info
Info 65   [11:10:5.775] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.ts 500 Project:  WatchType: Closed Script info
Info 66   [11:10:5.775] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts 500 Project:  WatchType: Closed Script info
Info 67   [11:10:5.775] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.ts 500 Project:  WatchType: Closed Script info
Info 68   [11:10:5.776] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser/Constants.ts 500 Project:  WatchType: Closed Script info
Info 69   [11:10:5.776] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts 500 Project:  WatchType: Closed Script info
Info 70   [11:10:5.776] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.ts 500 Project:  WatchType: Closed Script info
Info 71   [11:10:5.776] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts 500 Project:  WatchType: Closed Script info
Info 72   [11:10:5.777] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.ts 500 Project:  WatchType: Closed Script info
Info 73   [11:10:5.777] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts 500 Project:  WatchType: Closed Script info
Info 74   [11:10:5.777] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.ts 500 Project:  WatchType: Closed Script info
Info 75   [11:10:5.778] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts 500 Project:  WatchType: Closed Script info
Info 76   [11:10:5.778] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.ts 500 Project:  WatchType: Closed Script info
Info 77   [11:10:5.778] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts 500 Project:  WatchType: Closed Script info
Info 78   [11:10:5.779] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/services/BufferService.ts 500 Project:  WatchType: Closed Script info
Info 79   [11:10:5.779] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts 500 Project:  WatchType: Closed Script info
Info 80   [11:10:5.779] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.ts 500 Project:  WatchType: Closed Script info
Info 81   [11:10:5.779] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreService.ts 500 Project:  WatchType: Closed Script info
Info 82   [11:10:5.780] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/services/InstantiationService.ts 500 Project:  WatchType: Closed Script info
Info 83   [11:10:5.780] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/services/LogService.ts 500 Project:  WatchType: Closed Script info
Info 84   [11:10:5.780] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/services/OptionsService.ts 500 Project:  WatchType: Closed Script info
Info 85   [11:10:5.781] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts 500 Project:  WatchType: Closed Script info
Info 86   [11:10:5.781] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/services/Services.ts 500 Project:  WatchType: Closed Script info
Info 87   [11:10:5.781] Starting updateGraphWorker: Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json
Info 88   [11:10:5.821] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 89   [11:10:6.143] Elapsed:: 322ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 90   [11:10:6.373] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common 0 Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json WatchType: Failed Lookup Locations
Info 91   [11:10:6.373] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common 0 Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json WatchType: Failed Lookup Locations
Info 92   [11:10:6.514] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 93   [11:10:6.517] Elapsed:: 3ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 94   [11:10:6.865] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json WatchType: Failed Lookup Locations
Info 95   [11:10:6.865] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/buffer 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json WatchType: Failed Lookup Locations
Info 96   [11:10:6.865] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json WatchType: Failed Lookup Locations
Info 97   [11:10:6.865] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/parser 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json WatchType: Failed Lookup Locations
Info 98   [11:10:6.865] Finishing updateGraphWorker: Project: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json Version: 1 structureChanged: true Elapsed: 1084ms
Info 99   [11:10:6.865] Project '/home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json' (Configured) 
Info 100  [11:10:6.865] 	Files (70)
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/chai/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Platform.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/Services.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/OptionsService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Constants.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/AttributeData.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/CellData.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Marker.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/data/Charsets.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/data/EscapeSequences.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/utf8/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Constants.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/BufferService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/InstantiationService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/LogService.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mocha/index.d.ts

Info 101  [11:10:6.865] -----------------------------------------------
Info 102  [11:10:6.866] event:
    {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json"}}
Info 103  [11:10:6.867] event:
    {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"925925add4e25bf079c325abb57e2a18ac43d2274c5c8c13e1e8fee25897ae6e","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":53,"tsSize":453619,"tsx":0,"tsxSize":0,"dts":17,"dtsSize":344028,"deferred":0,"deferredSize":0},"compilerOptions":{"target":"es5","lib":["es6"],"rootDir":"","sourceMap":true,"removeComments":true,"pretty":true,"incremental":true,"composite":true,"strict":true,"declarationMap":true,"experimentalDecorators":true,"outDir":"","types":[""],"baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":true,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"3.6.3"}}}
Info 104  [11:10:6.869] event:
    {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","configFile":"/home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json","diagnostics":[]}}
Info 105  [11:10:6.869] Search path: /home/daimms/dev/Tyriar/xterm.js/src
Info 106  [11:10:6.869] ConfigFilePresence:: Current Watches: :: File: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts Status: File added to open files impacted by this config file
Info 107  [11:10:6.869] For info: /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts :: Config file name: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 108  [11:10:6.869] Opened configuration file /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 109  [11:10:6.869] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json 2000 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Config file
Info 110  [11:10:6.869] event:
    {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json","reason":"Creating possible configured project for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts to open"}}
Info 111  [11:10:6.880] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Wild card directory
Info 112  [11:10:6.881] Elapsed:: 1ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Wild card directory
Info 113  [11:10:6.881] Loading global plugin typescript-tslint-plugin
Info 114  [11:10:6.881] Enabling plugin typescript-tslint-plugin from candidate paths: /home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/tsserver.js/../../..,/home/daimms/.vscode-server-insiders/extensions/ms-vscode.vscode-typescript-tslint-plugin-1.2.2
Info 115  [11:10:6.881] Loading typescript-tslint-plugin from /home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/tsserver.js/../../.. (resolved to /home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/node_modules)
Info 116  [11:10:6.882] Loading typescript-tslint-plugin from /home/daimms/.vscode-server-insiders/extensions/ms-vscode.vscode-typescript-tslint-plugin-1.2.2 (resolved to /home/daimms/.vscode-server-insiders/extensions/ms-vscode.vscode-typescript-tslint-plugin-1.2.2/node_modules)
Info 117  [11:10:6.883] [typescript-tslint-plugin] "Create"
Info 118  [11:10:6.883] [typescript-tslint-plugin] "ConfigurationManager: Found configured project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json"
Info 119  [11:10:6.883] [typescript-tslint-plugin] "loaded"
Info 120  [11:10:6.883] Plugin validation succeded
Info 121  [11:10:6.884] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/AccessibilityManager.ts 500 Project:  WatchType: Closed Script info
Info 122  [11:10:6.884] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.test.ts 500 Project:  WatchType: Closed Script info
Info 123  [11:10:6.884] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/Terminal.test.ts 500 Project:  WatchType: Closed Script info
Info 124  [11:10:6.884] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts 500 Project:  WatchType: Closed Script info
Info 125  [11:10:6.884] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/Terminal2.test.ts 500 Project:  WatchType: Closed Script info
Info 126  [11:10:6.884] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/TestUtils.test.ts 500 Project:  WatchType: Closed Script info
Info 127  [11:10:6.884] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/Types.d.ts 500 Project:  WatchType: Closed Script info
Info 128  [11:10:6.884] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/WindowsMode.ts 500 Project:  WatchType: Closed Script info
Info 129  [11:10:6.884] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/Clipboard.test.ts 500 Project:  WatchType: Closed Script info
Info 130  [11:10:6.884] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/Clipboard.ts 500 Project:  WatchType: Closed Script info
Info 131  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/ColorManager.test.ts 500 Project:  WatchType: Closed Script info
Info 132  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/ColorManager.ts 500 Project:  WatchType: Closed Script info
Info 133  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/Lifecycle.ts 500 Project:  WatchType: Closed Script info
Info 134  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/Linkifier.test.ts 500 Project:  WatchType: Closed Script info
Info 135  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/Linkifier.ts 500 Project:  WatchType: Closed Script info
Info 136  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/LocalizableStrings.ts 500 Project:  WatchType: Closed Script info
Info 137  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/MouseZoneManager.ts 500 Project:  WatchType: Closed Script info
Info 138  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/RenderDebouncer.ts 500 Project:  WatchType: Closed Script info
Info 139  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/ScreenDprMonitor.ts 500 Project:  WatchType: Closed Script info
Info 140  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/TestUtils.test.ts 500 Project:  WatchType: Closed Script info
Info 141  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/Types.d.ts 500 Project:  WatchType: Closed Script info
Info 142  [11:10:6.885] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/Viewport.ts 500 Project:  WatchType: Closed Script info
Info 143  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/input/CompositionHelper.test.ts 500 Project:  WatchType: Closed Script info
Info 144  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/input/CompositionHelper.ts 500 Project:  WatchType: Closed Script info
Info 145  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/input/Mouse.test.ts 500 Project:  WatchType: Closed Script info
Info 146  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/input/Mouse.ts 500 Project:  WatchType: Closed Script info
Info 147  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/input/MoveToCell.test.ts 500 Project:  WatchType: Closed Script info
Info 148  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/input/MoveToCell.ts 500 Project:  WatchType: Closed Script info
Info 149  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/BaseRenderLayer.ts 500 Project:  WatchType: Closed Script info
Info 150  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/CharacterJoinerRegistry.test.ts 500 Project:  WatchType: Closed Script info
Info 151  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/CharacterJoinerRegistry.ts 500 Project:  WatchType: Closed Script info
Info 152  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/GridCache.test.ts 500 Project:  WatchType: Closed Script info
Info 153  [11:10:6.886] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/GridCache.ts 500 Project:  WatchType: Closed Script info
Info 154  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/LinkRenderLayer.ts 500 Project:  WatchType: Closed Script info
Info 155  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/RendererUtils.ts 500 Project:  WatchType: Closed Script info
Info 156  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/SelectionRenderLayer.ts 500 Project:  WatchType: Closed Script info
Info 157  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/TextRenderLayer.ts 500 Project:  WatchType: Closed Script info
Info 158  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/Types.d.ts 500 Project:  WatchType: Closed Script info
Info 159  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/BaseCharAtlas.ts 500 Project:  WatchType: Closed Script info
Info 160  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/CharAtlasCache.ts 500 Project:  WatchType: Closed Script info
Info 161  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/CharAtlasUtils.ts 500 Project:  WatchType: Closed Script info
Info 162  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/Constants.ts 500 Project:  WatchType: Closed Script info
Info 163  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/DynamicCharAtlas.ts 500 Project:  WatchType: Closed Script info
Info 164  [11:10:6.887] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/LRUMap.test.ts 500 Project:  WatchType: Closed Script info
Info 165  [11:10:6.888] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/LRUMap.ts 500 Project:  WatchType: Closed Script info
Info 166  [11:10:6.888] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/Types.d.ts 500 Project:  WatchType: Closed Script info
Info 167  [11:10:6.888] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/dom/DomRendererRowFactory.test.ts 500 Project:  WatchType: Closed Script info
Info 168  [11:10:6.888] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/dom/DomRendererRowFactory.ts 500 Project:  WatchType: Closed Script info
Info 169  [11:10:6.888] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/selection/SelectionModel.test.ts 500 Project:  WatchType: Closed Script info
Info 170  [11:10:6.888] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/selection/SelectionModel.ts 500 Project:  WatchType: Closed Script info
Info 171  [11:10:6.888] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/selection/Types.d.ts 500 Project:  WatchType: Closed Script info
Info 172  [11:10:6.888] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/services/CharSizeService.ts 500 Project:  WatchType: Closed Script info
Info 173  [11:10:6.888] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/services/MouseService.ts 500 Project:  WatchType: Closed Script info
Info 174  [11:10:6.889] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/services/RenderService.ts 500 Project:  WatchType: Closed Script info
Info 175  [11:10:6.889] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/services/SelectionService.test.ts 500 Project:  WatchType: Closed Script info
Info 176  [11:10:6.889] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/services/SelectionService.ts 500 Project:  WatchType: Closed Script info
Info 177  [11:10:6.889] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/services/Services.ts 500 Project:  WatchType: Closed Script info
Info 178  [11:10:6.889] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/services/SoundService.ts 500 Project:  WatchType: Closed Script info
Info 179  [11:10:6.890] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.test.ts 500 Project:  WatchType: Closed Script info
Info 180  [11:10:6.890] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.ts 500 Project:  WatchType: Closed Script info
Info 181  [11:10:6.890] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/public/Terminal.ts 500 Project:  WatchType: Closed Script info
Info 182  [11:10:6.890] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/renderer/CursorRenderLayer.ts 500 Project:  WatchType: Closed Script info
Info 183  [11:10:6.891] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/renderer/dom/DomRenderer.ts 500 Project:  WatchType: Closed Script info
Info 184  [11:10:6.891] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/typings/xterm.d.ts 500 Project:  WatchType: Closed Script info
Info 185  [11:10:6.895] Starting updateGraphWorker: Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 186  [11:10:6.904] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json 500 Project:  WatchType: Closed Script info
Info 187  [11:10:6.907] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser/tsconfig.json 500 Project:  WatchType: Closed Script info
Info 188  [11:10:6.918] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src 0 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 189  [11:10:6.918] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src 0 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 190  [11:10:6.920] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/LocalizableStrings.d.ts 500 Project:  WatchType: Closed Script info
Info 191  [11:10:6.931] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/EventEmitter.d.ts 500 Project:  WatchType: Closed Script info
Info 192  [11:10:6.932] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/CircularList.d.ts 500 Project:  WatchType: Closed Script info
Info 193  [11:10:6.933] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/services/Services.d.ts 500 Project:  WatchType: Closed Script info
Info 194  [11:10:6.943] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/parser/Constants.d.ts 500 Project:  WatchType: Closed Script info
Info 195  [11:10:6.945] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/Platform.d.ts 500 Project:  WatchType: Closed Script info
Info 196  [11:10:6.946] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/RenderDebouncer.d.ts 500 Project:  WatchType: Closed Script info
Info 197  [11:10:6.946] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/Lifecycle.d.ts 500 Project:  WatchType: Closed Script info
Info 198  [11:10:6.947] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/Lifecycle.d.ts 500 Project:  WatchType: Closed Script info
Info 199  [11:10:6.948] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/ScreenDprMonitor.d.ts 500 Project:  WatchType: Closed Script info
Info 200  [11:10:6.948] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/services/Services.d.ts 500 Project:  WatchType: Closed Script info
Info 201  [11:10:7.31] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/data/EscapeSequences.d.ts 500 Project:  WatchType: Closed Script info
Info 202  [11:10:7.34] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/data/Charsets.d.ts 500 Project:  WatchType: Closed Script info
Info 203  [11:10:7.35] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/CharWidth.d.ts 500 Project:  WatchType: Closed Script info
Info 204  [11:10:7.35] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/parser/EscapeSequenceParser.d.ts 500 Project:  WatchType: Closed Script info
Info 205  [11:10:7.43] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/parser/Params.d.ts 500 Project:  WatchType: Closed Script info
Info 206  [11:10:7.44] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/TypedArrayUtils.d.ts 500 Project:  WatchType: Closed Script info
Info 207  [11:10:7.44] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/input/TextDecoder.d.ts 500 Project:  WatchType: Closed Script info
Info 208  [11:10:7.45] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferLine.d.ts 500 Project:  WatchType: Closed Script info
Info 209  [11:10:7.45] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/buffer/AttributeData.d.ts 500 Project:  WatchType: Closed Script info
Info 210  [11:10:7.46] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Constants.d.ts 500 Project:  WatchType: Closed Script info
Info 211  [11:10:7.46] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/buffer/CellData.d.ts 500 Project:  WatchType: Closed Script info
Info 212  [11:10:7.48] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/parser/OscParser.d.ts 500 Project:  WatchType: Closed Script info
Info 213  [11:10:7.48] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/parser/DcsParser.d.ts 500 Project:  WatchType: Closed Script info
Info 214  [11:10:7.55] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Buffer.d.ts 500 Project:  WatchType: Closed Script info
Info 215  [11:10:7.58] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Marker.d.ts 500 Project:  WatchType: Closed Script info
Info 216  [11:10:7.74] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/input/CompositionHelper.d.ts 500 Project:  WatchType: Closed Script info
Info 217  [11:10:7.75] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/Viewport.d.ts 500 Project:  WatchType: Closed Script info
Info 218  [11:10:7.78] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/Clipboard.d.ts 500 Project:  WatchType: Closed Script info
Info 219  [11:10:7.84] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/TextRenderLayer.d.ts 500 Project:  WatchType: Closed Script info
Info 220  [11:10:7.85] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/BaseRenderLayer.d.ts 500 Project:  WatchType: Closed Script info
Info 221  [11:10:7.87] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/BaseCharAtlas.d.ts 500 Project:  WatchType: Closed Script info
Info 222  [11:10:7.89] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/SelectionRenderLayer.d.ts 500 Project:  WatchType: Closed Script info
Info 223  [11:10:7.93] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/LinkRenderLayer.d.ts 500 Project:  WatchType: Closed Script info
Info 224  [11:10:7.94] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/CharacterJoinerRegistry.d.ts 500 Project:  WatchType: Closed Script info
Info 225  [11:10:7.95] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/CharAtlasCache.d.ts 500 Project:  WatchType: Closed Script info
Info 226  [11:10:7.96] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/Linkifier.d.ts 500 Project:  WatchType: Closed Script info
Info 227  [11:10:7.97] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/services/SelectionService.d.ts 500 Project:  WatchType: Closed Script info
Info 228  [11:10:7.100] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/selection/SelectionModel.d.ts 500 Project:  WatchType: Closed Script info
Info 229  [11:10:7.100] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/services/SoundService.d.ts 500 Project:  WatchType: Closed Script info
Info 230  [11:10:7.101] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/MouseZoneManager.d.ts 500 Project:  WatchType: Closed Script info
Info 231  [11:10:7.108] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/dom/DomRendererRowFactory.d.ts 500 Project:  WatchType: Closed Script info
Info 232  [11:10:7.109] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/Constants.d.ts 500 Project:  WatchType: Closed Script info
Info 233  [11:10:7.110] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/input/Keyboard.d.ts 500 Project:  WatchType: Closed Script info
Info 234  [11:10:7.110] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/ColorManager.d.ts 500 Project:  WatchType: Closed Script info
Info 235  [11:10:7.111] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/services/RenderService.d.ts 500 Project:  WatchType: Closed Script info
Info 236  [11:10:7.112] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/services/OptionsService.d.ts 500 Project:  WatchType: Closed Script info
Info 237  [11:10:7.113] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/services/CharSizeService.d.ts 500 Project:  WatchType: Closed Script info
Info 238  [11:10:7.113] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/services/BufferService.d.ts 500 Project:  WatchType: Closed Script info
Info 239  [11:10:7.114] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/services/MouseService.d.ts 500 Project:  WatchType: Closed Script info
Info 240  [11:10:7.114] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreService.d.ts 500 Project:  WatchType: Closed Script info
Info 241  [11:10:7.115] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/services/LogService.d.ts 500 Project:  WatchType: Closed Script info
Info 242  [11:10:7.115] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/services/DirtyRowService.d.ts 500 Project:  WatchType: Closed Script info
Info 243  [11:10:7.116] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/services/InstantiationService.d.ts 500 Project:  WatchType: Closed Script info
Info 244  [11:10:7.117] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreMouseService.d.ts 500 Project:  WatchType: Closed Script info
Info 245  [11:10:7.118] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/input/WriteBuffer.d.ts 500 Project:  WatchType: Closed Script info
Info 246  [11:10:7.118] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/TestUtils.test.d.ts 500 Project:  WatchType: Closed Script info
Info 247  [11:10:7.119] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/Clone.d.ts 500 Project:  WatchType: Closed Script info
Info 248  [11:10:7.277] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/input/Mouse.d.ts 500 Project:  WatchType: Closed Script info
Info 249  [11:10:7.279] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/input/MoveToCell.d.ts 500 Project:  WatchType: Closed Script info
Info 250  [11:10:7.286] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/GridCache.d.ts 500 Project:  WatchType: Closed Script info
Info 251  [11:10:7.292] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/LRUMap.d.ts 500 Project:  WatchType: Closed Script info
Info 252  [11:10:7.342] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 253  [11:10:7.342] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/common 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 254  [11:10:7.343] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferReflow.d.ts 500 Project:  WatchType: Closed Script info
Info 255  [11:10:7.344] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferSet.d.ts 500 Project:  WatchType: Closed Script info
Info 256  [11:10:8.89] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 257  [11:10:8.89] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/browser 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 258  [11:10:8.89] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/glob 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 259  [11:10:8.90] Elapsed:: 1ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/glob 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 260  [11:10:8.90] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 261  [11:10:8.90] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 262  [11:10:8.91] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 263  [11:10:8.91] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 264  [11:10:8.91] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/minimatch 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 265  [11:10:8.104] Elapsed:: 13ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/minimatch 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 266  [11:10:8.104] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/jsdom 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 267  [11:10:8.104] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/jsdom 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 268  [11:10:8.106] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/parse5 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 269  [11:10:8.106] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/parse5 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 270  [11:10:8.106] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/tough-cookie 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 271  [11:10:8.106] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/tough-cookie 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 272  [11:10:8.107] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/decimal.js 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 273  [11:10:8.107] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/decimal.js 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 274  [11:10:8.108] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/source-map 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 275  [11:10:8.108] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/source-map 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 276  [11:10:8.109] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/tapable 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 277  [11:10:8.110] Elapsed:: 1ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/tapable 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 278  [11:10:8.110] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/uglify-js 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 279  [11:10:8.111] Elapsed:: 1ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/uglify-js 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 280  [11:10:8.111] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/node_modules/@types 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Type roots
Info 281  [11:10:8.112] Elapsed:: 1ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/node_modules/@types 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Type roots
Info 282  [11:10:8.112] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules/@types 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Type roots
Info 283  [11:10:8.112] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules/@types 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Type roots
Info 284  [11:10:8.112] DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/node_modules/@types 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Type roots
Info 285  [11:10:8.112] Elapsed:: 0ms DirectoryWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/node_modules/@types 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Type roots
Info 286  [11:10:8.112] Finishing updateGraphWorker: Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json Version: 1 structureChanged: true Elapsed: 1217ms
Info 287  [11:10:8.112] Project '/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json' (Configured) 
Info 288  [11:10:8.112] 	Files (157)
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.dom.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.scripthost.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/LocalizableStrings.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/EventEmitter.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/CircularList.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/Services.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Platform.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/RenderDebouncer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Lifecycle.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Lifecycle.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/ScreenDprMonitor.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/selection/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/Services.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/AccessibilityManager.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/chai/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/data/EscapeSequences.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/data/Charsets.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/CharWidth.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/Params.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/EscapeSequenceParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/TypedArrayUtils.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/TextDecoder.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/AttributeData.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferLine.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/CellData.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/OscParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/DcsParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Marker.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Buffer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/CompositionHelper.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Viewport.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Clipboard.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/BaseCharAtlas.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/BaseRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/TextRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/SelectionRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/CursorRenderLayer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/LinkRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/CharacterJoinerRegistry.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/CharAtlasCache.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Linkifier.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/selection/SelectionModel.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/SelectionService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/SoundService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/MouseZoneManager.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/dom/DomRendererRowFactory.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/dom/DomRenderer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/Keyboard.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/WindowsMode.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/ColorManager.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/RenderService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/OptionsService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/CharSizeService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/BufferService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/MouseService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/LogService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/DirtyRowService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/InstantiationService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreMouseService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/WriteBuffer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts
	/home/daimms/dev/Tyriar/xterm.js/src/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/TestUtils.test.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Clone.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/node/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/events/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/minimatch/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/glob/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/node-pty/typings/node-pty.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal2.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Clipboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/jsdom/node_modules/parse5/lib/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/tough-cookie/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/jsdom/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/ColorManager.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Linkifier.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/CompositionHelper.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/Mouse.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/Mouse.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/MoveToCell.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/MoveToCell.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/CharacterJoinerRegistry.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/GridCache.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/GridCache.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/RendererUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/CharAtlasUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/LRUMap.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/DynamicCharAtlas.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/LRUMap.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/dom/DomRendererRowFactory.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/selection/SelectionModel.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/services/SelectionService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferReflow.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferSet.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/utf8/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/Terminal.ts
	/home/daimms/dev/Tyriar/xterm.js/typings/xterm.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/app-root-path/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/cli-table/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/fs-extra/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/decimal.js/decimal.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mathjs/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mocha/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/puppeteer/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/tapable/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/source-map/source-map.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/uglify-js/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/webpack/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/ws/index.d.ts

Info 289  [11:10:8.112] -----------------------------------------------
Info 290  [11:10:8.113] event:
    {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json"}}
Info 291  [11:10:8.113] event:
    {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"a6bbc2e4bfa1232dc86999981b9215255b75d0f3e00dadd25b3b4d8e12181b4a","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":49,"tsSize":703036,"tsx":0,"tsxSize":0,"dts":108,"dtsSize":1971790,"deferred":0,"deferredSize":0},"compilerOptions":{"target":"es5","lib":["dom","es5","es6","scripthost","es2015.promise"],"rootDir":"","sourceMap":true,"removeComments":true,"pretty":true,"incremental":true,"module":"commonjs","outDir":"","baseUrl":"","paths":"","noUnusedLocals":true,"noImplicitAny":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":true,"files":false,"include":true,"exclude":true,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"3.6.3"}}}
Info 292  [11:10:8.115] event:
    {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","configFile":"/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json","diagnostics":[]}}
Info 293  [11:10:8.115] Search path: /home/daimms/dev/Tyriar/xterm.js/src/renderer
Info 294  [11:10:8.115] ConfigFilePresence:: Current Watches: :: File: /home/daimms/dev/Tyriar/xterm.js/src/renderer/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts Status: File added to open files impacted by this config file
Info 295  [11:10:8.115] ConfigFilePresence:: Current Watches: :: File: /home/daimms/dev/Tyriar/xterm.js/src/renderer/jsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts Status: File added to open files impacted by this config file
Info 296  [11:10:8.115] ConfigFilePresence:: Current Watches: Config file:: File: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts,/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts Status: File added to open files impacted by this config file
Info 297  [11:10:8.115] For info: /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts :: Config file name: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 298  [11:10:8.116] Project '/home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json' (Configured) 0
Info 298  [11:10:8.116] 	Files (70)
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/chai/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Platform.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/Services.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/OptionsService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Constants.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/AttributeData.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/CellData.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Marker.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/data/Charsets.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/data/EscapeSequences.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/utf8/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Constants.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/BufferService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/InstantiationService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/LogService.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mocha/index.d.ts

Info 298  [11:10:8.116] -----------------------------------------------
Info 298  [11:10:8.116] Project '/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json' (Configured) 1
Info 298  [11:10:8.116] 	Files (157)
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.dom.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.scripthost.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/LocalizableStrings.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/EventEmitter.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/CircularList.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/Services.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Platform.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/RenderDebouncer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Lifecycle.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Lifecycle.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/ScreenDprMonitor.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/selection/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/Services.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/AccessibilityManager.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/chai/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/data/EscapeSequences.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/data/Charsets.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/CharWidth.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/Params.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/EscapeSequenceParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/TypedArrayUtils.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/TextDecoder.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/AttributeData.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferLine.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/CellData.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/OscParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/DcsParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Marker.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Buffer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/CompositionHelper.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Viewport.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Clipboard.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/BaseCharAtlas.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/BaseRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/TextRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/SelectionRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/CursorRenderLayer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/LinkRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/CharacterJoinerRegistry.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/CharAtlasCache.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Linkifier.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/selection/SelectionModel.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/SelectionService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/SoundService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/MouseZoneManager.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/dom/DomRendererRowFactory.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/dom/DomRenderer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/Keyboard.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/WindowsMode.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/ColorManager.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/RenderService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/OptionsService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/CharSizeService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/BufferService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/MouseService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/LogService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/DirtyRowService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/InstantiationService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreMouseService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/WriteBuffer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts
	/home/daimms/dev/Tyriar/xterm.js/src/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/TestUtils.test.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Clone.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/node/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/events/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/minimatch/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/glob/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/node-pty/typings/node-pty.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal2.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Clipboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/jsdom/node_modules/parse5/lib/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/tough-cookie/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/jsdom/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/ColorManager.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Linkifier.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/CompositionHelper.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/Mouse.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/Mouse.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/MoveToCell.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/MoveToCell.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/CharacterJoinerRegistry.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/GridCache.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/GridCache.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/RendererUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/CharAtlasUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/LRUMap.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/DynamicCharAtlas.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/LRUMap.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/dom/DomRendererRowFactory.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/selection/SelectionModel.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/services/SelectionService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferReflow.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferSet.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/utf8/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/Terminal.ts
	/home/daimms/dev/Tyriar/xterm.js/typings/xterm.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/app-root-path/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/cli-table/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/fs-extra/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/decimal.js/decimal.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mathjs/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mocha/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/puppeteer/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/tapable/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/source-map/source-map.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/uglify-js/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/webpack/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/ws/index.d.ts

Info 298  [11:10:8.116] -----------------------------------------------
Info 298  [11:10:8.116] Open files: 
Info 298  [11:10:8.116] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 298  [11:10:8.116] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json,/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 298  [11:10:8.116] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 298  [11:10:8.116] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 298  [11:10:8.116] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 298  [11:10:8.116] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Perf 298  [11:10:8.116] 2::updateOpen: elapsed time (in milliseconds) 2436.9293
Info 299  [11:10:8.116] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":2,"success":true,"body":true}
Info 300  [11:10:8.117] event:
    {"seq":0,"type":"event","event":"typingsInstallerPid","body":{"pid":2796}}
Info 301  [11:10:8.117] Running: *ensureProjectForOpenFiles*
Info 302  [11:10:8.117] Structure before ensureProjectForOpenFiles:
Info 303  [11:10:8.117] Project '/home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json' (Configured) 0
Info 303  [11:10:8.117] 	Files (70)
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/chai/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Platform.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/Services.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/OptionsService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Constants.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/AttributeData.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/CellData.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Marker.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/data/Charsets.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/data/EscapeSequences.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/utf8/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Constants.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/BufferService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/InstantiationService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/LogService.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mocha/index.d.ts

Info 303  [11:10:8.117] -----------------------------------------------
Info 303  [11:10:8.117] Project '/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json' (Configured) 1
Info 303  [11:10:8.117] 	Files (157)
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.dom.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.scripthost.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/LocalizableStrings.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/EventEmitter.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/CircularList.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/Services.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Platform.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/RenderDebouncer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Lifecycle.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Lifecycle.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/ScreenDprMonitor.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/selection/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/Services.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/AccessibilityManager.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/chai/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/data/EscapeSequences.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/data/Charsets.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/CharWidth.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/Params.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/EscapeSequenceParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/TypedArrayUtils.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/TextDecoder.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/AttributeData.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferLine.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/CellData.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/OscParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/DcsParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Marker.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Buffer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/CompositionHelper.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Viewport.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Clipboard.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/BaseCharAtlas.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/BaseRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/TextRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/SelectionRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/CursorRenderLayer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/LinkRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/CharacterJoinerRegistry.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/CharAtlasCache.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Linkifier.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/selection/SelectionModel.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/SelectionService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/SoundService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/MouseZoneManager.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/dom/DomRendererRowFactory.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/dom/DomRenderer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/Keyboard.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/WindowsMode.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/ColorManager.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/RenderService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/OptionsService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/CharSizeService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/BufferService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/MouseService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/LogService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/DirtyRowService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/InstantiationService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreMouseService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/WriteBuffer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts
	/home/daimms/dev/Tyriar/xterm.js/src/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/TestUtils.test.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Clone.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/node/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/events/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/minimatch/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/glob/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/node-pty/typings/node-pty.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal2.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Clipboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/jsdom/node_modules/parse5/lib/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/tough-cookie/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/jsdom/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/ColorManager.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Linkifier.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/CompositionHelper.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/Mouse.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/Mouse.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/MoveToCell.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/MoveToCell.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/CharacterJoinerRegistry.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/GridCache.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/GridCache.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/RendererUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/CharAtlasUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/LRUMap.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/DynamicCharAtlas.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/LRUMap.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/dom/DomRendererRowFactory.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/selection/SelectionModel.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/services/SelectionService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferReflow.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferSet.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/utf8/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/Terminal.ts
	/home/daimms/dev/Tyriar/xterm.js/typings/xterm.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/app-root-path/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/cli-table/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/fs-extra/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/decimal.js/decimal.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mathjs/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mocha/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/puppeteer/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/tapable/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/source-map/source-map.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/uglify-js/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/webpack/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/ws/index.d.ts

Info 303  [11:10:8.117] -----------------------------------------------
Info 303  [11:10:8.117] Open files: 
Info 303  [11:10:8.117] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 303  [11:10:8.117] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json,/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 303  [11:10:8.117] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 303  [11:10:8.117] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 303  [11:10:8.117] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 303  [11:10:8.117] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 303  [11:10:8.118] Structure after ensureProjectForOpenFiles:
Info 304  [11:10:8.118] Project '/home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json' (Configured) 0
Info 304  [11:10:8.118] 	Files (70)
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/chai/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Platform.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/Services.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/OptionsService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Constants.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/AttributeData.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/CellData.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Marker.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/data/Charsets.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/data/EscapeSequences.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/utf8/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Constants.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/BufferService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/InstantiationService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/LogService.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mocha/index.d.ts

Info 304  [11:10:8.118] -----------------------------------------------
Info 304  [11:10:8.118] Project '/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json' (Configured) 1
Info 304  [11:10:8.118] 	Files (157)
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.dom.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.scripthost.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/LocalizableStrings.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/EventEmitter.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/CircularList.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/Services.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Platform.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/RenderDebouncer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Lifecycle.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Lifecycle.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/ScreenDprMonitor.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/selection/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/Services.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/AccessibilityManager.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/chai/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/data/EscapeSequences.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/data/Charsets.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/CharWidth.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/Params.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/EscapeSequenceParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/TypedArrayUtils.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/TextDecoder.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/AttributeData.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferLine.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/CellData.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/OscParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/DcsParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Marker.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Buffer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/CompositionHelper.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Viewport.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Clipboard.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/BaseCharAtlas.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/BaseRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/TextRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/SelectionRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/CursorRenderLayer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/LinkRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/CharacterJoinerRegistry.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/CharAtlasCache.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Linkifier.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/selection/SelectionModel.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/SelectionService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/SoundService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/MouseZoneManager.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/dom/DomRendererRowFactory.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/dom/DomRenderer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/Keyboard.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/WindowsMode.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/ColorManager.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/RenderService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/OptionsService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/CharSizeService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/BufferService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/MouseService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/LogService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/DirtyRowService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/InstantiationService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreMouseService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/WriteBuffer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts
	/home/daimms/dev/Tyriar/xterm.js/src/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/TestUtils.test.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Clone.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/node/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/events/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/minimatch/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/glob/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/node-pty/typings/node-pty.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal2.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Clipboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/jsdom/node_modules/parse5/lib/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/tough-cookie/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/jsdom/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/ColorManager.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Linkifier.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/CompositionHelper.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/Mouse.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/Mouse.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/MoveToCell.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/MoveToCell.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/CharacterJoinerRegistry.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/GridCache.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/GridCache.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/RendererUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/CharAtlasUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/LRUMap.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/DynamicCharAtlas.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/LRUMap.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/dom/DomRendererRowFactory.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/selection/SelectionModel.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/services/SelectionService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferReflow.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferSet.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/utf8/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/Terminal.ts
	/home/daimms/dev/Tyriar/xterm.js/typings/xterm.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/app-root-path/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/cli-table/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/fs-extra/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/decimal.js/decimal.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mathjs/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mocha/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/puppeteer/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/tapable/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/source-map/source-map.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/uglify-js/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/webpack/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/ws/index.d.ts

Info 304  [11:10:8.118] -----------------------------------------------
Info 304  [11:10:8.118] Open files: 
Info 304  [11:10:8.118] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 304  [11:10:8.118] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json,/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 304  [11:10:8.118] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 304  [11:10:8.118] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 304  [11:10:8.118] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 304  [11:10:8.118] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 304  [11:10:8.118] got projects updated in background, updating diagnostics for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts,/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts,/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts
Info 305  [11:10:8.118] event:
    {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"]}}
Info 306  [11:10:8.118] request:
    {"seq":3,"type":"request","command":"configurePlugin","arguments":{"pluginName":"typescript-tslint-plugin","configuration":{}}}
Info 307  [11:10:8.119] [typescript-tslint-plugin] "onConfigurationChanged"
Info 308  [11:10:8.119] [typescript-tslint-plugin] "TSConfig configuration changed"
Info 309  [11:10:8.119] got projects updated in background, updating diagnostics for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts,/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts,/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts
Info 310  [11:10:8.119] event:
    {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"]}}
Info 311  [11:10:8.119] [typescript-tslint-plugin] "onConfigurationChanged"
Info 312  [11:10:8.119] [typescript-tslint-plugin] "TSConfig configuration changed"
Info 313  [11:10:8.119] got projects updated in background, updating diagnostics for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts,/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts,/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts
Info 314  [11:10:8.119] event:
    {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"]}}
Info 315  [11:10:8.119] response:
    {"seq":0,"type":"response","command":"configurePlugin","request_seq":3,"success":true}
Perf 316  [11:10:8.119] 3::configurePlugin: async elapsed time (in milliseconds) 0.6816
Info 317  [11:10:8.119] request:
    {"seq":4,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"]}}
Perf 318  [11:10:8.120] 4::geterr: async elapsed time (in milliseconds) 0.6159
Info 319  [11:10:8.120] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 320  [11:10:8.166] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 321  [11:10:8.166] [typescript-tslint-plugin] "(runTsLint) start"
Info 322  [11:10:8.166] [typescript-tslint-plugin] "(loadLibrary) trying to load /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 323  [11:10:8.210] [typescript-tslint-plugin] "(loadLibrary) Resolved tslint to /home/daimms/dev/Tyriar/xterm.js/node_modules/tslint/lib/index.js"
Info 324  [11:10:8.210] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 325  [11:10:8.311] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 326  [11:10:8.311] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 327  [11:10:8.311] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 328  [11:10:8.311] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 329  [11:10:8.311] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 330  [11:10:8.316] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 331  [11:10:8.317] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 332  [11:10:8.366] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 333  [11:10:8.366] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 334  [11:10:8.369] request:
    {"seq":5,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"]}}
Info 335  [11:10:8.369] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}}
Perf 336  [11:10:8.369] 5::geterr: async elapsed time (in milliseconds) 0.5207
Info 337  [11:10:8.371] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 338  [11:10:8.371] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 339  [11:10:8.371] [typescript-tslint-plugin] "(runTsLint) start"
Info 340  [11:10:8.371] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 341  [11:10:8.371] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 342  [11:10:8.371] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 343  [11:10:8.371] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 344  [11:10:8.371] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 345  [11:10:8.371] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 346  [11:10:8.371] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 347  [11:10:8.371] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 348  [11:10:8.380] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 349  [11:10:8.380] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 350  [11:10:8.383] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 351  [11:10:8.393] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 352  [11:10:8.622] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 353  [11:10:8.622] [typescript-tslint-plugin] "(runTsLint) start"
Info 354  [11:10:8.622] [typescript-tslint-plugin] "(loadLibrary) trying to load /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 355  [11:10:8.660] [typescript-tslint-plugin] "(loadLibrary) Resolved tslint to /home/daimms/dev/Tyriar/xterm.js/node_modules/tslint/lib/index.js"
Info 356  [11:10:8.660] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 357  [11:10:8.660] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 358  [11:10:8.660] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 359  [11:10:8.660] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 360  [11:10:8.660] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 361  [11:10:8.660] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 362  [11:10:8.662] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 363  [11:10:8.662] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 364  [11:10:8.904] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 365  [11:10:8.930] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 366  [11:10:8.941] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":57,"offset":8},"end":{"line":57,"offset":14},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":101},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":74},"end":{"line":519,"offset":79},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"'diffToTop' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"'diffToBottom' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"'clearWrap' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"'collectAndFlag' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 367  [11:10:8.942] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","diagnostics":[]}}
Info 368  [11:10:8.977] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts'"
Info 369  [11:10:8.977] [typescript-tslint-plugin] "(runTsLint) start"
Info 370  [11:10:8.977] [typescript-tslint-plugin] "(loadLibrary) trying to load /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"
Info 371  [11:10:9.17] [typescript-tslint-plugin] "(loadLibrary) Resolved tslint to /home/daimms/dev/Tyriar/xterm.js/node_modules/tslint/lib/index.js"
Info 372  [11:10:9.17] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 373  [11:10:9.17] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"
Info 374  [11:10:9.18] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"
Info 375  [11:10:9.18] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 376  [11:10:9.18] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 377  [11:10:9.18] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"
Info 378  [11:10:9.19] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 379  [11:10:9.19] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 380  [11:10:9.60] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 381  [11:10:9.60] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","diagnostics":[]}}
Info 382  [11:10:9.62] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","diagnostics":[{"start":{"line":91,"offset":19},"end":{"line":91,"offset":23},"text":"'cols' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":91,"offset":33},"end":{"line":91,"offset":37},"text":"'rows' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 383  [11:10:9.62] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}}
Info 384  [11:10:13.706] request:
    {"seq":6,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","startLine":1,"startOffset":1,"endLine":1,"endOffset":1}}
Perf 385  [11:10:13.740] 6::getApplicableRefactors: elapsed time (in milliseconds) 34.0993
Info 386  [11:10:13.740] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":6,"success":true,"body":[]}
Info 387  [11:10:13.852] request:
    {"seq":7,"type":"request","command":"configure","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","formatOptions":{"tabSize":2,"indentSize":2,"convertTabsToSpaces":true,"newLineCharacter":"\n","insertSpaceAfterCommaDelimiter":true,"insertSpaceAfterConstructor":false,"insertSpaceAfterSemicolonInForStatements":true,"insertSpaceBeforeAndAfterBinaryOperators":true,"insertSpaceAfterKeywordsInControlFlowStatements":true,"insertSpaceAfterFunctionKeywordForAnonymousFunctions":true,"insertSpaceBeforeFunctionParenthesis":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces":true,"insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces":false,"insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces":false,"insertSpaceAfterTypeAssertion":false,"placeOpenBraceOnNewLineForFunctions":false,"placeOpenBraceOnNewLineForControlBlocks":false,"semicolons":"ignore"},"preferences":{"quotePreference":"single","allowTextChangesInNewFiles":true,"providePrefixAndSuffixTextForRename":true,"allowRenameOfImportPath":true}}}
Info 388  [11:10:13.852] Host configuration update for file /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts
Info 389  [11:10:13.852] response:
    {"seq":0,"type":"response","command":"configure","request_seq":7,"success":true}
Perf 390  [11:10:13.853] 7::configure: async elapsed time (in milliseconds) 0.7199
Info 391  [11:10:13.853] request:
    {"seq":8,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","startLine":139,"startOffset":10,"endLine":139,"endOffset":20}}
Perf 392  [11:10:13.855] 8::getApplicableRefactors: elapsed time (in milliseconds) 2.0962
Info 393  [11:10:13.855] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":8,"success":true,"body":[{"name":"Convert parameters to destructured object","description":"Convert parameters to destructured object","actions":[{"name":"Convert parameters to destructured object","description":"Convert parameters to destructured object"}]}]}
Info 394  [11:10:14.7] request:
    {"seq":9,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"]}}
Perf 395  [11:10:14.8] 9::geterr: async elapsed time (in milliseconds) 0.5030
Info 396  [11:10:14.10] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","diagnostics":[]}}
Info 397  [11:10:14.10] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts'"
Info 398  [11:10:14.10] [typescript-tslint-plugin] "(runTsLint) start"
Info 399  [11:10:14.10] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 400  [11:10:14.11] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"
Info 401  [11:10:14.11] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"
Info 402  [11:10:14.11] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 403  [11:10:14.11] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 404  [11:10:14.11] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"
Info 405  [11:10:14.11] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 406  [11:10:14.11] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 407  [11:10:14.43] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 408  [11:10:14.43] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","diagnostics":[]}}
Info 409  [11:10:14.46] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","diagnostics":[{"start":{"line":91,"offset":19},"end":{"line":91,"offset":23},"text":"'cols' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":91,"offset":33},"end":{"line":91,"offset":37},"text":"'rows' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 410  [11:10:14.48] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 411  [11:10:14.48] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 412  [11:10:14.48] [typescript-tslint-plugin] "(runTsLint) start"
Info 413  [11:10:14.48] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 414  [11:10:14.48] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 415  [11:10:14.48] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 416  [11:10:14.48] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 417  [11:10:14.48] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 418  [11:10:14.48] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 419  [11:10:14.48] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 420  [11:10:14.48] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 421  [11:10:14.51] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 422  [11:10:14.51] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 423  [11:10:14.52] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 424  [11:10:14.59] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 425  [11:10:14.59] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 426  [11:10:14.59] [typescript-tslint-plugin] "(runTsLint) start"
Info 427  [11:10:14.59] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 428  [11:10:14.59] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 429  [11:10:14.59] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 430  [11:10:14.59] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 431  [11:10:14.59] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 432  [11:10:14.59] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 433  [11:10:14.61] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 434  [11:10:14.61] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 435  [11:10:14.177] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 436  [11:10:14.187] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 437  [11:10:14.188] request:
    {"seq":10,"type":"request","command":"definitionAndBoundSpan","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","line":116,"offset":23}}
Perf 438  [11:10:14.194] 10::definitionAndBoundSpan: elapsed time (in milliseconds) 6.1054
Info 439  [11:10:14.195] response:
    {"seq":0,"type":"response","command":"definitionAndBoundSpan","request_seq":10,"success":true,"body":{"definitions":[{"file":"/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts","start":{"line":131,"offset":11},"end":{"line":131,"offset":24},"contextStart":{"line":131,"offset":3},"contextEnd":{"line":133,"offset":4}}],"textSpan":{"start":{"line":116,"offset":10},"end":{"line":116,"offset":23}}}}
Info 440  [11:10:14.202] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":57,"offset":8},"end":{"line":57,"offset":14},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":101},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":74},"end":{"line":519,"offset":79},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"'diffToTop' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"'diffToBottom' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"'clearWrap' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"'collectAndFlag' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 441  [11:10:14.202] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":9}}
Info 442  [11:10:14.391] request:
    {"seq":11,"type":"request","command":"updateOpen","arguments":{"changedFiles":[],"closedFiles":["/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts"],"openFiles":[{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","fileContent":"/**\n * Copyright (c) 2014 The xterm.js authors. All rights reserved.\n * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)\n * @license MIT\n *\n * Originally forked from (with the author's permission):\n *   Fabrice Bellard's javascript vt100 for jslinux:\n *   http://bellard.org/jslinux/\n *   Copyright (c) 2011 Fabrice Bellard\n *   The original design remains. The terminal itself\n *   has been extended to include xterm CSI codes, among\n *   other features.\n *\n * Terminal Emulation References:\n *   http://vt100.net/\n *   http://invisible-island.net/xterm/ctlseqs/ctlseqs.txt\n *   http://invisible-island.net/xterm/ctlseqs/ctlseqs.html\n *   http://invisible-island.net/vttest/\n *   http://www.inwap.com/pdp10/ansicode.txt\n *   http://linux.die.net/man/4/console_codes\n *   http://linux.die.net/man/7/urxvt\n */\n\nimport { IInputHandlingTerminal, ICompositionHelper, ITerminalOptions, ITerminal, IBrowser, CustomKeyEventHandler } from './Types';\nimport { IRenderer, CharacterJoinerHandler } from 'browser/renderer/Types';\nimport { CompositionHelper } from 'browser/input/CompositionHelper';\nimport { Viewport } from 'browser/Viewport';\nimport { rightClickHandler, moveTextAreaUnderMouseCursor, handlePasteEvent, copyHandler, paste } from 'browser/Clipboard';\nimport { C0 } from 'common/data/EscapeSequences';\nimport { InputHandler } from './InputHandler';\nimport { Renderer } from './renderer/Renderer';\nimport { Linkifier } from 'browser/Linkifier';\nimport { SelectionService } from 'browser/services/SelectionService';\nimport * as Browser from 'common/Platform';\nimport { addDisposableDomListener } from 'browser/Lifecycle';\nimport * as Strings from 'browser/LocalizableStrings';\nimport { SoundService } from 'browser/services/SoundService';\nimport { MouseZoneManager } from 'browser/MouseZoneManager';\nimport { AccessibilityManager } from './AccessibilityManager';\nimport { ITheme, IMarker, IDisposable, ISelectionPosition } from 'xterm';\nimport { DomRenderer } from './renderer/dom/DomRenderer';\nimport { IKeyboardEvent, KeyboardResultType, ICharset, IBufferLine, IAttributeData, CoreMouseEventType, CoreMouseButton, CoreMouseAction } from 'common/Types';\nimport { evaluateKeyboardEvent } from 'common/input/Keyboard';\nimport { EventEmitter, IEvent } from 'common/EventEmitter';\nimport { DEFAULT_ATTR_DATA } from 'common/buffer/BufferLine';\nimport { applyWindowsMode } from './WindowsMode';\nimport { ColorManager } from 'browser/ColorManager';\nimport { RenderService } from 'browser/services/RenderService';\nimport { IOptionsService, IBufferService, ICoreMouseService, ICoreService, ILogService, IDirtyRowService, IInstantiationService } from 'common/services/Services';\nimport { OptionsService } from 'common/services/OptionsService';\nimport { ICharSizeService, IRenderService, IMouseService, ISelectionService, ISoundService } from 'browser/services/Services';\nimport { CharSizeService } from 'browser/services/CharSizeService';\nimport { BufferService, MINIMUM_COLS, MINIMUM_ROWS } from 'common/services/BufferService';\nimport { Disposable } from 'common/Lifecycle';\nimport { IBufferSet, IBuffer } from 'common/buffer/Types';\nimport { Attributes } from 'common/buffer/Constants';\nimport { MouseService } from 'browser/services/MouseService';\nimport { IParams, IFunctionIdentifier } from 'common/parser/Types';\nimport { CoreService } from 'common/services/CoreService';\nimport { LogService } from 'common/services/LogService';\nimport { ILinkifier, IMouseZoneManager, LinkMatcherHandler, ILinkMatcherOptions, IViewport } from 'browser/Types';\nimport { DirtyRowService } from 'common/services/DirtyRowService';\nimport { InstantiationService } from 'common/services/InstantiationService';\nimport { CoreMouseService } from 'common/services/CoreMouseService';\nimport { WriteBuffer } from 'common/input/WriteBuffer';\n\n// Let it work inside Node.js for automated testing purposes.\nconst document = (typeof window !== 'undefined') ? window.document : null;\n\n\nexport class Terminal extends Disposable implements ITerminal, IDisposable, IInputHandlingTerminal {\n  public textarea: HTMLTextAreaElement;\n  public element: HTMLElement;\n  public screenElement: HTMLElement;\n\n  /**\n   * The HTMLElement that the terminal is created in, set by Terminal.open.\n   */\n  private _parent: HTMLElement | null;\n  private _document: Document;\n  private _viewportScrollArea: HTMLElement;\n  private _viewportElement: HTMLElement;\n  private _helperContainer: HTMLElement;\n  private _compositionView: HTMLElement;\n\n  private _visualBellTimer: number;\n\n  public browser: IBrowser = <any>Browser;\n\n  // TODO: We should remove options once components adopt optionsService\n  public get options(): ITerminalOptions { return this.optionsService.options; }\n\n  // TODO: This can be changed to an enum or boolean, 0 and 1 seem to be the only options\n  public cursorState: number;\n  public cursorHidden: boolean;\n\n  private _customKeyEventHandler: CustomKeyEventHandler;\n\n  // common services\n  private _bufferService: IBufferService;\n  private _coreService: ICoreService;\n  private _coreMouseService: ICoreMouseService;\n  private _dirtyRowService: IDirtyRowService;\n  private _instantiationService: IInstantiationService;\n  private _logService: ILogService;\n  public optionsService: IOptionsService;\n\n  // browser services\n  private _charSizeService: ICharSizeService;\n  private _mouseService: IMouseService;\n  private _renderService: IRenderService;\n  private _selectionService: ISelectionService;\n  private _soundService: ISoundService;\n\n  // modes\n  public applicationKeypad: boolean;\n  public originMode: boolean;\n  public insertMode: boolean;\n  public wraparoundMode: boolean; // defaults: xterm - true, vt100 - false\n  public bracketedPasteMode: boolean;\n\n  // charset\n  // The current charset\n  public charset: ICharset;\n  public gcharset: number;\n  public glevel: number;\n  public charsets: ICharset[];\n\n  // mouse properties\n  public mouseEvents: CoreMouseEventType = CoreMouseEventType.NONE;\n  public sendFocus: boolean;\n\n  // misc\n  public savedCols: number;\n\n  public curAttrData: IAttributeData;\n  private _eraseAttrData: IAttributeData;\n\n  public params: (string | number)[];\n  public currentParam: string | number;\n\n  // write buffer\n  private _writeBuffer: WriteBuffer;\n\n  // Store if user went browsing history in scrollback\n  private _userScrolling: boolean;\n\n  /**\n   * Records whether the keydown event has already been handled and triggered a data event, if so\n   * the keypress event should not trigger a data event but should still print to the textarea so\n   * screen readers will announce it.\n   */\n  private _keyDownHandled: boolean = false;\n\n  private _inputHandler: InputHandler;\n  public linkifier: ILinkifier;\n  public viewport: IViewport;\n  private _compositionHelper: ICompositionHelper;\n  private _mouseZoneManager: IMouseZoneManager;\n  private _accessibilityManager: AccessibilityManager;\n  private _colorManager: ColorManager;\n  private _theme: ITheme;\n  private _windowsMode: IDisposable | undefined;\n\n  // bufferline to clone/copy from for new blank lines\n  private _blankLine: IBufferLine = null;\n\n  public get cols(): number { return this._bufferService.cols; }\n  public get rows(): number { return this._bufferService.rows; }\n\n  private _onCursorMove = new EventEmitter<void>();\n  public get onCursorMove(): IEvent<void> { return this._onCursorMove.event; }\n  private _onData = new EventEmitter<string>();\n  public get onData(): IEvent<string> { return this._onData.event; }\n  private _onKey = new EventEmitter<{ key: string, domEvent: KeyboardEvent }>();\n  public get onKey(): IEvent<{ key: string, domEvent: KeyboardEvent }> { return this._onKey.event; }\n  private _onLineFeed = new EventEmitter<void>();\n  public get onLineFeed(): IEvent<void> { return this._onLineFeed.event; }\n  private _onRender = new EventEmitter<{ start: number, end: number }>();\n  public get onRender(): IEvent<{ start: number, end: number }> { return this._onRender.event; }\n  private _onResize = new EventEmitter<{ cols: number, rows: number }>();\n  public get onResize(): IEvent<{ cols: number, rows: number }> { return this._onResize.event; }\n  private _onScroll = new EventEmitter<number>();\n  public get onScroll(): IEvent<number> { return this._onScroll.event; }\n  private _onSelectionChange = new EventEmitter<void>();\n  public get onSelectionChange(): IEvent<void> { return this._onSelectionChange.event; }\n  private _onTitleChange = new EventEmitter<string>();\n  public get onTitleChange(): IEvent<string> { return this._onTitleChange.event; }\n\n  private _onFocus = new EventEmitter<void>();\n  public get onFocus(): IEvent<void> { return this._onFocus.event; }\n  private _onBlur = new EventEmitter<void>();\n  public get onBlur(): IEvent<void> { return this._onBlur.event; }\n  public onA11yCharEmitter = new EventEmitter<string>();\n  public get onA11yChar(): IEvent<string> { return this.onA11yCharEmitter.event; }\n  public onA11yTabEmitter = new EventEmitter<number>();\n  public get onA11yTab(): IEvent<number> { return this.onA11yTabEmitter.event; }\n\n  /**\n   * Creates a new `Terminal` object.\n   *\n   * @param options An object containing a set of options, the available options are:\n   *   - `cursorBlink` (boolean): Whether the terminal cursor blinks\n   *   - `cols` (number): The number of columns of the terminal (horizontal size)\n   *   - `rows` (number): The number of rows of the terminal (vertical size)\n   *\n   * @public\n   * @class Xterm Xterm\n   * @alias module:xterm/src/xterm\n   */\n  constructor(\n    options: ITerminalOptions = {}\n  ) {\n    super();\n\n    // Setup and initialize common services\n    this._instantiationService = new InstantiationService();\n    this.optionsService = new OptionsService(options);\n    this._instantiationService.setService(IOptionsService, this.optionsService);\n    this._bufferService = this._instantiationService.createInstance(BufferService);\n    this._instantiationService.setService(IBufferService, this._bufferService);\n    this._logService = this._instantiationService.createInstance(LogService);\n    this._instantiationService.setService(ILogService, this._logService);\n    this._coreService = this._instantiationService.createInstance(CoreService, () => this.scrollToBottom());\n    this._instantiationService.setService(ICoreService, this._coreService);\n    this._coreService.onData(e => this._onData.fire(e));\n    this._coreMouseService = this._instantiationService.createInstance(CoreMouseService);\n    this._instantiationService.setService(ICoreMouseService, this._coreMouseService);\n    this._dirtyRowService = this._instantiationService.createInstance(DirtyRowService);\n    this._instantiationService.setService(IDirtyRowService, this._dirtyRowService);\n\n    this._setupOptionsListeners();\n    this._setup();\n\n    this._writeBuffer = new WriteBuffer(data => this._inputHandler.parse(data));\n  }\n\n  public dispose(): void {\n    if (this._isDisposed) {\n      return;\n    }\n    super.dispose();\n    if (this._windowsMode) {\n      this._windowsMode.dispose();\n      this._windowsMode = undefined;\n    }\n    if (this._renderService) {\n      this._renderService.dispose();\n    }\n    this._customKeyEventHandler = null;\n    this.write = () => {};\n    if (this.element && this.element.parentNode) {\n      this.element.parentNode.removeChild(this.element);\n    }\n  }\n\n  private _setup(): void {\n    this._parent = document ? document.body : null;\n\n    this.cursorState = 0;\n    this.cursorHidden = false;\n    this._customKeyEventHandler = null;\n\n    // modes\n    this.applicationKeypad = false;\n    this.originMode = false;\n    this.insertMode = false;\n    this.wraparoundMode = true; // defaults: xterm - true, vt100 - false\n    this.bracketedPasteMode = false;\n\n    // charset\n    this.charset = null;\n    this.gcharset = null;\n    this.glevel = 0;\n    // TODO: Can this be just []?\n    this.charsets = [null];\n\n    this.curAttrData = DEFAULT_ATTR_DATA.clone();\n    this._eraseAttrData = DEFAULT_ATTR_DATA.clone();\n\n    this.params = [];\n    this.currentParam = 0;\n\n    this._userScrolling = false;\n\n    // Register input handler and refire/handle events\n    this._inputHandler = new InputHandler(this, this._bufferService, this._coreService, this._dirtyRowService, this._logService, this.optionsService, this._coreMouseService);\n    this._inputHandler.onCursorMove(() => this._onCursorMove.fire());\n    this._inputHandler.onLineFeed(() => this._onLineFeed.fire());\n    this.register(this._inputHandler);\n\n    this.linkifier = this.linkifier || new Linkifier(this._bufferService, this._logService);\n\n    if (this.options.windowsMode) {\n      this._windowsMode = applyWindowsMode(this);\n    }\n  }\n\n  /**\n   * Convenience property to active buffer.\n   */\n  public get buffer(): IBuffer {\n    return this.buffers.active;\n  }\n\n  public get buffers(): IBufferSet {\n    return this._bufferService.buffers;\n  }\n\n  /**\n   * back_color_erase feature for xterm.\n   */\n  public eraseAttrData(): IAttributeData {\n    this._eraseAttrData.bg &= ~(Attributes.CM_MASK | 0xFFFFFF);\n    this._eraseAttrData.bg |= this.curAttrData.bg & ~0xFC000000;\n    return this._eraseAttrData;\n  }\n\n  /**\n   * Focus the terminal. Delegates focus handling to the terminal's DOM element.\n   */\n  public focus(): void {\n    if (this.textarea) {\n      this.textarea.focus({ preventScroll: true });\n    }\n  }\n\n  public get isFocused(): boolean {\n    return document.activeElement === this.textarea && document.hasFocus();\n  }\n\n  private _setupOptionsListeners(): void {\n    // TODO: These listeners should be owned by individual components\n    this.optionsService.onOptionChange(key => {\n      switch (key) {\n        case 'fontFamily':\n        case 'fontSize':\n          // When the font changes the size of the cells may change which requires a renderer clear\n          if (this._renderService) {\n            this._renderService.clear();\n          }\n          if (this._charSizeService) {\n            this._charSizeService.measure();\n          }\n          break;\n        case 'drawBoldTextInBrightColors':\n        case 'letterSpacing':\n        case 'lineHeight':\n        case 'fontWeight':\n        case 'fontWeightBold':\n          // When the font changes the size of the cells may change which requires a renderer clear\n          if (this._renderService) {\n            this._renderService.clear();\n            this._renderService.onResize(this.cols, this.rows);\n            this.refresh(0, this.rows - 1);\n          }\n          break;\n        case 'rendererType':\n          if (this._renderService) {\n            this._renderService.setRenderer(this._createRenderer());\n            this._renderService.onResize(this.cols, this.rows);\n          }\n          break;\n        case 'scrollback':\n          this.buffers.resize(this.cols, this.rows);\n          if (this.viewport) {\n            this.viewport.syncScrollArea();\n          }\n          break;\n        case 'screenReaderMode':\n          if (this.optionsService.options.screenReaderMode) {\n            if (!this._accessibilityManager && this._renderService) {\n              this._accessibilityManager = new AccessibilityManager(this, this._renderService);\n            }\n          } else {\n            if (this._accessibilityManager) {\n              this._accessibilityManager.dispose();\n              this._accessibilityManager = null;\n            }\n          }\n          break;\n        case 'tabStopWidth': this.buffers.setupTabStops(); break;\n        case 'theme':\n          this._setTheme(this.optionsService.options.theme);\n          break;\n        case 'windowsMode':\n          if (this.optionsService.options.windowsMode) {\n            if (!this._windowsMode) {\n              this._windowsMode = applyWindowsMode(this);\n            }\n          } else {\n            if (this._windowsMode) {\n              this._windowsMode.dispose();\n              this._windowsMode = undefined;\n            }\n          }\n          break;\n      }\n    });\n  }\n\n  /**\n   * Binds the desired focus behavior on a given terminal object.\n   */\n  private _onTextAreaFocus(ev: KeyboardEvent): void {\n    if (this.sendFocus) {\n      this._coreService.triggerDataEvent(C0.ESC + '[I');\n    }\n    this.updateCursorStyle(ev);\n    this.element.classList.add('focus');\n    this.showCursor();\n    this._onFocus.fire();\n  }\n\n  /**\n   * Blur the terminal, calling the blur function on the terminal's underlying\n   * textarea.\n   */\n  public blur(): void {\n    return this.textarea.blur();\n  }\n\n  /**\n   * Binds the desired blur behavior on a given terminal object.\n   */\n  private _onTextAreaBlur(): void {\n    // Text can safely be removed on blur. Doing it earlier could interfere with\n    // screen readers reading it out.\n    this.textarea.value = '';\n    this.refresh(this.buffer.y, this.buffer.y);\n    if (this.sendFocus) {\n      this._coreService.triggerDataEvent(C0.ESC + '[O');\n    }\n    this.element.classList.remove('focus');\n    this._onBlur.fire();\n  }\n\n  /**\n   * Initialize default behavior\n   */\n  private _initGlobal(): void {\n    this._bindKeys();\n\n    // Bind clipboard functionality\n    this.register(addDisposableDomListener(this.element, 'copy', (event: ClipboardEvent) => {\n      // If mouse events are active it means the selection manager is disabled and\n      // copy should be handled by the host program.\n      if (!this.hasSelection()) {\n        return;\n      }\n      copyHandler(event, this._selectionService);\n    }));\n    const pasteHandlerWrapper = (event: ClipboardEvent) => handlePasteEvent(event, this.textarea, this.bracketedPasteMode, this._coreService);\n    this.register(addDisposableDomListener(this.textarea, 'paste', pasteHandlerWrapper));\n    this.register(addDisposableDomListener(this.element, 'paste', pasteHandlerWrapper));\n\n    // Handle right click context menus\n    if (Browser.isFirefox) {\n      // Firefox doesn't appear to fire the contextmenu event on right click\n      this.register(addDisposableDomListener(this.element, 'mousedown', (event: MouseEvent) => {\n        if (event.button === 2) {\n          rightClickHandler(event, this.textarea, this.screenElement, this._selectionService, this.options.rightClickSelectsWord);\n        }\n      }));\n    } else {\n      this.register(addDisposableDomListener(this.element, 'contextmenu', (event: MouseEvent) => {\n        rightClickHandler(event, this.textarea, this.screenElement, this._selectionService, this.options.rightClickSelectsWord);\n      }));\n    }\n\n    // Move the textarea under the cursor when middle clicking on Linux to ensure\n    // middle click to paste selection works. This only appears to work in Chrome\n    // at the time is writing.\n    if (Browser.isLinux) {\n      // Use auxclick event over mousedown the latter doesn't seem to work. Note\n      // that the regular click event doesn't fire for the middle mouse button.\n      this.register(addDisposableDomListener(this.element, 'auxclick', (event: MouseEvent) => {\n        if (event.button === 1) {\n          moveTextAreaUnderMouseCursor(event, this.textarea, this.screenElement);\n        }\n      }));\n    }\n  }\n\n  /**\n   * Apply key handling to the terminal\n   */\n  private _bindKeys(): void {\n    this.register(addDisposableDomListener(this.textarea, 'keyup', (ev: KeyboardEvent) => this._keyUp(ev), true));\n    this.register(addDisposableDomListener(this.textarea, 'keydown', (ev: KeyboardEvent) => this._keyDown(ev), true));\n    this.register(addDisposableDomListener(this.textarea, 'keypress', (ev: KeyboardEvent) => this._keyPress(ev), true));\n    this.register(addDisposableDomListener(this.textarea, 'compositionstart', () => this._compositionHelper.compositionstart()));\n    this.register(addDisposableDomListener(this.textarea, 'compositionupdate', (e: CompositionEvent) => this._compositionHelper.compositionupdate(e)));\n    this.register(addDisposableDomListener(this.textarea, 'compositionend', () => this._compositionHelper.compositionend()));\n    this.register(this.onRender(() => this._compositionHelper.updateCompositionElements()));\n    this.register(this.onRender(e => this._queueLinkification(e.start, e.end)));\n  }\n\n  /**\n   * Opens the terminal within an element.\n   *\n   * @param parent The element to create the terminal within.\n   */\n  public open(parent: HTMLElement): void {\n    this._parent = parent || this._parent;\n\n    if (!this._parent) {\n      throw new Error('Terminal requires a parent element.');\n    }\n\n    if (!document.body.contains(parent)) {\n      this._logService.warn('Terminal.open was called on an element that was not attached to the DOM');\n    }\n\n    this._document = this._parent.ownerDocument;\n\n    // Create main element container\n    this.element = this._document.createElement('div');\n    this.element.dir = 'ltr';   // xterm.css assumes LTR\n    this.element.classList.add('terminal');\n    this.element.classList.add('xterm');\n    this.element.setAttribute('tabindex', '0');\n    this._parent.appendChild(this.element);\n\n    // Performance: Use a document fragment to build the terminal\n    // viewport and helper elements detached from the DOM\n    const fragment = document.createDocumentFragment();\n    this._viewportElement = document.createElement('div');\n    this._viewportElement.classList.add('xterm-viewport');\n    fragment.appendChild(this._viewportElement);\n    this._viewportScrollArea = document.createElement('div');\n    this._viewportScrollArea.classList.add('xterm-scroll-area');\n    this._viewportElement.appendChild(this._viewportScrollArea);\n\n    this.screenElement = document.createElement('div');\n    this.screenElement.classList.add('xterm-screen');\n    // Create the container that will hold helpers like the textarea for\n    // capturing DOM Events. Then produce the helpers.\n    this._helperContainer = document.createElement('div');\n    this._helperContainer.classList.add('xterm-helpers');\n    this.screenElement.appendChild(this._helperContainer);\n    fragment.appendChild(this.screenElement);\n\n    this.textarea = document.createElement('textarea');\n    this.textarea.classList.add('xterm-helper-textarea');\n    this.textarea.setAttribute('aria-label', Strings.promptLabel);\n    this.textarea.setAttribute('aria-multiline', 'false');\n    this.textarea.setAttribute('autocorrect', 'off');\n    this.textarea.setAttribute('autocapitalize', 'off');\n    this.textarea.setAttribute('spellcheck', 'false');\n    this.textarea.tabIndex = 0;\n    this.register(addDisposableDomListener(this.textarea, 'focus', (ev: KeyboardEvent) => this._onTextAreaFocus(ev)));\n    this.register(addDisposableDomListener(this.textarea, 'blur', () => this._onTextAreaBlur()));\n    this._helperContainer.appendChild(this.textarea);\n\n    this._charSizeService = this._instantiationService.createInstance(CharSizeService, this._document, this._helperContainer);\n    this._instantiationService.setService(ICharSizeService, this._charSizeService);\n\n    this._compositionView = document.createElement('div');\n    this._compositionView.classList.add('composition-view');\n    this._compositionHelper = this._instantiationService.createInstance(CompositionHelper, this.textarea, this._compositionView);\n    this._helperContainer.appendChild(this._compositionView);\n\n    // Performance: Add viewport and helper elements from the fragment\n    this.element.appendChild(fragment);\n\n    this._theme = this.options.theme || this._theme;\n    this.options.theme = undefined;\n    this._colorManager = new ColorManager(document, this.options.allowTransparency);\n    this._colorManager.setTheme(this._theme);\n\n    const renderer = this._createRenderer();\n    this._renderService = this._instantiationService.createInstance(RenderService, renderer, this.rows, this.screenElement);\n    this._instantiationService.setService(IRenderService, this._renderService);\n    this._renderService.onRender(e => this._onRender.fire(e));\n    this.onResize(e => this._renderService.resize(e.cols, e.rows));\n\n    this._soundService = this._instantiationService.createInstance(SoundService);\n    this._instantiationService.setService(ISoundService, this._soundService);\n    this._mouseService = this._instantiationService.createInstance(MouseService);\n    this._instantiationService.setService(IMouseService, this._mouseService);\n\n    this.viewport = this._instantiationService.createInstance(Viewport,\n      (amount: number, suppressEvent: boolean) => this.scrollLines(amount, suppressEvent),\n      this._viewportElement,\n      this._viewportScrollArea\n    );\n    this.viewport.onThemeChange(this._colorManager.colors);\n    this.register(this.viewport);\n\n    this.register(this.onCursorMove(() => this._renderService.onCursorMove()));\n    this.register(this.onResize(() => this._renderService.onResize(this.cols, this.rows)));\n    this.register(this.onBlur(() => this._renderService.onBlur()));\n    this.register(this.onFocus(() => this._renderService.onFocus()));\n    this.register(this._renderService.onDimensionsChange(() => this.viewport.syncScrollArea()));\n\n    this._selectionService = this._instantiationService.createInstance(SelectionService,\n      (amount: number, suppressEvent: boolean) => this.scrollLines(amount, suppressEvent),\n      this.element,\n      this.screenElement);\n    this._instantiationService.setService(ISelectionService, this._selectionService);\n    this.register(this._selectionService.onSelectionChange(() => this._onSelectionChange.fire()));\n    this.register(this._selectionService.onRedrawRequest(e => this._renderService.onSelectionChanged(e.start, e.end, e.columnSelectMode)));\n    this.register(this._selectionService.onLinuxMouseSelection(text => {\n      // If there's a new selection, put it into the textarea, focus and select it\n      // in order to register it as a selection on the OS. This event is fired\n      // only on Linux to enable middle click to paste selection.\n      this.textarea.value = text;\n      this.textarea.focus();\n      this.textarea.select();\n    }));\n    this.register(this.onScroll(() => {\n      this.viewport.syncScrollArea();\n      this._selectionService.refresh();\n    }));\n    this.register(addDisposableDomListener(this._viewportElement, 'scroll', () => this._selectionService.refresh()));\n\n    this._mouseZoneManager = this._instantiationService.createInstance(MouseZoneManager, this.element, this.screenElement);\n    this.register(this._mouseZoneManager);\n    this.register(this.onScroll(() => this._mouseZoneManager.clearAll()));\n    this.linkifier.attachToDom(this.element, this._mouseZoneManager);\n\n    // This event listener must be registered aftre MouseZoneManager is created\n    this.register(addDisposableDomListener(this.element, 'mousedown', (e: MouseEvent) => this._selectionService.onMouseDown(e)));\n\n    // apply mouse event classes set by escape codes before terminal was attached\n    if (this.mouseEvents) {\n      this._selectionService.disable();\n      this.element.classList.add('enable-mouse-events');\n    } else {\n      this._selectionService.enable();\n    }\n\n    if (this.options.screenReaderMode) {\n      // Note that this must be done *after* the renderer is created in order to\n      // ensure the correct order of the dprchange event\n      this._accessibilityManager = new AccessibilityManager(this, this._renderService);\n    }\n\n    // Measure the character size\n    this._charSizeService.measure();\n\n    // Setup loop that draws to screen\n    this.refresh(0, this.rows - 1);\n\n    // Initialize global actions that need to be taken on the document.\n    this._initGlobal();\n\n    // Listen for mouse events and translate\n    // them into terminal mouse protocols.\n    this.bindMouse();\n  }\n\n  private _createRenderer(): IRenderer {\n    switch (this.options.rendererType) {\n      case 'canvas': return new Renderer(this._colorManager.colors, this, this._bufferService, this._charSizeService, this.optionsService);\n      case 'dom': return new DomRenderer(this, this._colorManager.colors, this._charSizeService, this.optionsService);\n      default: throw new Error(`Unrecognized rendererType \"${this.options.rendererType}\"`);\n    }\n  }\n\n  /**\n   * Sets the theme on the renderer. The renderer must have been initialized.\n   * @param theme The theme to set.\n   */\n  private _setTheme(theme: ITheme): void {\n    this._theme = theme;\n    if (this._colorManager) {\n      this._colorManager.setTheme(theme);\n    }\n    if (this._renderService) {\n      this._renderService.setColors(this._colorManager.colors);\n    }\n    if (this.viewport) {\n      this.viewport.onThemeChange(this._colorManager.colors);\n    }\n  }\n\n  /**\n   * Bind certain mouse events to the terminal.\n   * By default only 3 button + wheel up/down is ativated. For higher buttons\n   * no mouse report will be created. Typically the standard actions will be active.\n   *\n   * There are several reasons not to enable support for higher buttons/wheel:\n   * - Button 4 and 5 are typically used for history back and forward navigation,\n   *   there is no straight forward way to supress/intercept those standard actions.\n   * - Support for higher buttons does not work in some platform/browser combinations.\n   * - Left/right wheel was not tested.\n   * - Emulators vary in mouse button support, typically only 3 buttons and\n   *   wheel up/down work reliable.\n   *\n   * TODO: Move mouse event code into its own file.\n   */\n  public bindMouse(): void {\n    const self = this;\n    const el = this.element;\n\n    // send event to CoreMouseService\n    function sendEvent(ev: MouseEvent | WheelEvent): boolean {\n      let pos;\n\n      // get mouse coordinates\n      pos = self._mouseService.getRawByteCoords(ev, self.screenElement, self.cols, self.rows);\n      if (!pos) {\n        return false;\n      }\n\n      let but: CoreMouseButton;\n      let action: CoreMouseAction;\n      switch ((<any>ev).overrideType || ev.type) {\n        case 'mousemove':\n          action = CoreMouseAction.MOVE;\n          if (ev.buttons === undefined) {\n            // buttons is not supported on macOS, try to get a value from button instead\n            but = CoreMouseButton.NONE;\n            if (ev.button !== undefined) {\n              but = ev.button < 3 ? ev.button : CoreMouseButton.NONE;\n            }\n          } else {\n            // according to MDN buttons only reports up to button 5 (AUX2)\n            but = ev.buttons & 1 ? CoreMouseButton.LEFT :\n                  ev.buttons & 4 ? CoreMouseButton.MIDDLE :\n                  ev.buttons & 2 ? CoreMouseButton.RIGHT :\n                  CoreMouseButton.NONE; // fallback to NONE\n          }\n          break;\n        case 'mouseup':\n          action = CoreMouseAction.UP;\n          but = ev.button < 3 ? ev.button : CoreMouseButton.NONE;\n          break;\n        case 'mousedown':\n          action = CoreMouseAction.DOWN;\n          but = ev.button < 3 ? ev.button : CoreMouseButton.NONE;\n          break;\n        case 'wheel':\n          // only UP/DOWN wheel events are respected\n          if ((ev as WheelEvent).deltaY !== 0) {\n            action = (ev as WheelEvent).deltaY < 0 ? CoreMouseAction.UP : CoreMouseAction.DOWN;\n          }\n          but = CoreMouseButton.WHEEL;\n          break;\n        default:\n          // dont handle other event types by accident\n          return false;\n      }\n\n      // exit if we cannot determine valid button/action values\n      // do nothing for higher buttons than wheel\n      if (action === undefined || but === undefined || but > CoreMouseButton.WHEEL) {\n        return false;\n      }\n\n      return self._coreMouseService.triggerMouseEvent({\n        col: pos.x - 33, // FIXME: why -33 here?\n        row: pos.y - 33,\n        button: but,\n        action,\n        ctrl: ev.ctrlKey,\n        alt: ev.altKey,\n        shift: ev.shiftKey\n      });\n    }\n\n    /**\n     * Event listener state handling.\n     * We listen to the onProtocolChange event of CoreMouseService and put\n     * requested listeners in `requestedEvents`. With this the listeners\n     * have all bits to do the event listener juggling.\n     * Note: 'mousedown' currently is \"always on\" and not managed\n     * by onProtocolChange.\n     */\n    const requestedEvents: {[key: string]: ((ev: Event) => void) | null} = {\n      mouseup: null,\n      wheel: null,\n      mousedrag: null,\n      mousemove: null\n    };\n    const eventListeners: {[key: string]: (ev: Event) => void} = {\n      mouseup: (ev: MouseEvent) => {\n        sendEvent(ev);\n        if (!ev.buttons) {\n          // if no other button is held remove global handlers\n          this._document.removeEventListener('mouseup', requestedEvents.mouseup);\n          if (requestedEvents.mousedrag) {\n            this._document.removeEventListener('mousemove', requestedEvents.mousedrag);\n          }\n        }\n        return this.cancel(ev);\n      },\n      wheel: (ev: WheelEvent) => {\n        sendEvent(ev);\n        ev.preventDefault();\n        return this.cancel(ev);\n      },\n      mousedrag: (ev: MouseEvent) => {\n        // deal only with move while a button is held\n        if (ev.buttons) {\n          sendEvent(ev);\n        }\n      },\n      mousemove: (ev: MouseEvent) => {\n        // deal only with move without any button\n        if (!ev.buttons) {\n          sendEvent(ev);\n        }\n      }\n    };\n    this._coreMouseService.onProtocolChange(events => {\n      // apply global changes on events\n      this.mouseEvents = events;\n      if (events) {\n        if (this.optionsService.options.logLevel === 'debug') {\n          this._logService.debug('Binding to mouse events:', this._coreMouseService.explainEvents(events));\n        }\n        this.element.classList.add('enable-mouse-events');\n        this._selectionService.disable();\n      } else {\n        this._logService.debug('Unbinding from mouse events.');\n        this.element.classList.remove('enable-mouse-events');\n        this._selectionService.enable();\n      }\n\n      // add/remove handlers from requestedEvents\n\n      if (!(events & CoreMouseEventType.MOVE)) {\n        el.removeEventListener('mousemove', requestedEvents.mousemove);\n        requestedEvents.mousemove = null;\n      } else if (!requestedEvents.mousemove) {\n        el.addEventListener('mousemove', eventListeners.mousemove);\n        requestedEvents.mousemove = eventListeners.mousemove;\n      }\n\n      if (!(events & CoreMouseEventType.WHEEL)) {\n        el.removeEventListener('wheel', requestedEvents.wheel);\n        requestedEvents.wheel = null;\n      } else if (!requestedEvents.wheel) {\n        el.addEventListener('wheel', eventListeners.wheel);\n        requestedEvents.wheel = eventListeners.wheel;\n      }\n\n      if (!(events & CoreMouseEventType.UP)) {\n        this._document.removeEventListener('mouseup', requestedEvents.mouseup);\n        requestedEvents.mouseup = null;\n      } else if (!requestedEvents.mouseup) {\n        requestedEvents.mouseup = eventListeners.mouseup;\n      }\n\n      if (!(events & CoreMouseEventType.DRAG)) {\n        this._document.removeEventListener('mousemove', requestedEvents.mousedrag);\n        requestedEvents.mousedrag = null;\n      } else if (!requestedEvents.mousedrag) {\n        requestedEvents.mousedrag = eventListeners.mousedrag;\n      }\n    });\n    // force initial onProtocolChange so we dont miss early mouse requests\n    this._coreMouseService.activeProtocol = this._coreMouseService.activeProtocol;\n\n    /**\n     * \"Always on\" event listeners.\n     */\n    this.register(addDisposableDomListener(el, 'mousedown', (ev: MouseEvent) => {\n      ev.preventDefault();\n      this.focus();\n\n      // Don't send the mouse button to the pty if mouse events are disabled or\n      // if the selection manager is having selection forced (ie. a modifier is\n      // held).\n      if (!this.mouseEvents || this._selectionService.shouldForceSelection(ev)) {\n        return;\n      }\n\n      sendEvent(ev);\n\n      // Register additional global handlers which should keep reporting outside\n      // of the terminal element.\n      // Note: Other emulators also do this for 'mousedown' while a button\n      // is held, we currently limit 'mousedown' to the terminal only.\n      if (requestedEvents.mouseup) {\n        this._document.addEventListener('mouseup', requestedEvents.mouseup);\n      }\n      if (requestedEvents.mousedrag) {\n        this._document.addEventListener('mousemove', requestedEvents.mousedrag);\n      }\n\n      return this.cancel(ev);\n    }));\n\n    this.register(addDisposableDomListener(el, 'wheel', (ev: WheelEvent) => {\n      if (!requestedEvents.wheel) {\n        // Convert wheel events into up/down events when the buffer does not have scrollback, this\n        // enables scrolling in apps hosted in the alt buffer such as vim or tmux.\n        if (!this.buffer.hasScrollback) {\n          const amount = this.viewport.getLinesScrolled(ev);\n\n          // Do nothing if there's no vertical scroll\n          if (amount === 0) {\n            return;\n          }\n\n          // Construct and send sequences\n          const sequence = C0.ESC + (this._coreService.decPrivateModes.applicationCursorKeys ? 'O' : '[') + ( ev.deltaY < 0 ? 'A' : 'B');\n          let data = '';\n          for (let i = 0; i < Math.abs(amount); i++) {\n            data += sequence;\n          }\n          this._coreService.triggerDataEvent(data, true);\n        }\n        return;\n      }\n    }));\n\n    // allow wheel scrolling in\n    // the shell for example\n    this.register(addDisposableDomListener(el, 'wheel', (ev: WheelEvent) => {\n      if (requestedEvents.wheel) return;\n      if (!this.viewport.onWheel(ev)) {\n        return this.cancel(ev);\n      }\n    }));\n\n    this.register(addDisposableDomListener(el, 'touchstart', (ev: TouchEvent) => {\n      if (this.mouseEvents) return;\n      this.viewport.onTouchStart(ev);\n      return this.cancel(ev);\n    }));\n\n    this.register(addDisposableDomListener(el, 'touchmove', (ev: TouchEvent) => {\n      if (this.mouseEvents) return;\n      if (!this.viewport.onTouchMove(ev)) {\n        return this.cancel(ev);\n      }\n    }));\n  }\n\n\n  /**\n   * Tells the renderer to refresh terminal content between two rows (inclusive) at the next\n   * opportunity.\n   * @param start The row to start from (between 0 and this.rows - 1).\n   * @param end The row to end at (between start and this.rows - 1).\n   */\n  public refresh(start: number, end: number): void {\n    if (this._renderService) {\n      this._renderService.refreshRows(start, end);\n    }\n  }\n\n  /**\n   * Queues linkification for the specified rows.\n   * @param start The row to start from (between 0 and this.rows - 1).\n   * @param end The row to end at (between start and this.rows - 1).\n   */\n  private _queueLinkification(start: number, end: number): void {\n    if (this.linkifier) {\n      this.linkifier.linkifyRows(start, end);\n    }\n  }\n\n  /**\n   * Change the cursor style for different selection modes\n   */\n  public updateCursorStyle(ev: KeyboardEvent): void {\n    if (this._selectionService && this._selectionService.shouldColumnSelect(ev)) {\n      this.element.classList.add('column-select');\n    } else {\n      this.element.classList.remove('column-select');\n    }\n  }\n\n  /**\n   * Display the cursor element\n   */\n  public showCursor(): void {\n    if (!this.cursorState) {\n      this.cursorState = 1;\n      this.refresh(this.buffer.y, this.buffer.y);\n    }\n  }\n\n  /**\n   * Scroll the terminal down 1 row, creating a blank line.\n   * @param isWrapped Whether the new line is wrapped from the previous line.\n   */\n  public scroll(isWrapped: boolean = false): void {\n    let newLine: IBufferLine;\n    newLine = this._blankLine;\n    const eraseAttr = this.eraseAttrData();\n    if (!newLine || newLine.length !== this.cols || newLine.getFg(0) !== eraseAttr.fg || newLine.getBg(0) !== eraseAttr.bg) {\n      newLine = this.buffer.getBlankLine(eraseAttr, isWrapped);\n      this._blankLine = newLine;\n    }\n    newLine.isWrapped = isWrapped;\n\n    const topRow = this.buffer.ybase + this.buffer.scrollTop;\n    const bottomRow = this.buffer.ybase + this.buffer.scrollBottom;\n\n    if (this.buffer.scrollTop === 0) {\n      // Determine whether the buffer is going to be trimmed after insertion.\n      const willBufferBeTrimmed = this.buffer.lines.isFull;\n\n      // Insert the line using the fastest method\n      if (bottomRow === this.buffer.lines.length - 1) {\n        if (willBufferBeTrimmed) {\n          this.buffer.lines.recycle().copyFrom(newLine);\n        } else {\n          this.buffer.lines.push(newLine.clone());\n        }\n      } else {\n        this.buffer.lines.splice(bottomRow + 1, 0, newLine.clone());\n      }\n\n      // Only adjust ybase and ydisp when the buffer is not trimmed\n      if (!willBufferBeTrimmed) {\n        this.buffer.ybase++;\n        // Only scroll the ydisp with ybase if the user has not scrolled up\n        if (!this._userScrolling) {\n          this.buffer.ydisp++;\n        }\n      } else {\n        // When the buffer is full and the user has scrolled up, keep the text\n        // stable unless ydisp is right at the top\n        if (this._userScrolling) {\n          this.buffer.ydisp = Math.max(this.buffer.ydisp - 1, 0);\n        }\n      }\n    } else {\n      // scrollTop is non-zero which means no line will be going to the\n      // scrollback, instead we can just shift them in-place.\n      const scrollRegionHeight = bottomRow - topRow + 1/*as it's zero-based*/;\n      this.buffer.lines.shiftElements(topRow + 1, scrollRegionHeight - 1, -1);\n      this.buffer.lines.set(bottomRow, newLine.clone());\n    }\n\n    // Move the viewport to the bottom of the buffer unless the user is\n    // scrolling.\n    if (!this._userScrolling) {\n      this.buffer.ydisp = this.buffer.ybase;\n    }\n\n    // Flag rows that need updating\n    this._dirtyRowService.markRangeDirty(this.buffer.scrollTop, this.buffer.scrollBottom);\n\n    this._onScroll.fire(this.buffer.ydisp);\n  }\n\n  /**\n   * Scroll the display of the terminal\n   * @param disp The number of lines to scroll down (negative scroll up).\n   * @param suppressScrollEvent Don't emit the scroll event as scrollLines. This is used\n   * to avoid unwanted events being handled by the viewport when the event was triggered from the\n   * viewport originally.\n   */\n  public scrollLines(disp: number, suppressScrollEvent?: boolean): void {\n    if (disp < 0) {\n      if (this.buffer.ydisp === 0) {\n        return;\n      }\n      this._userScrolling = true;\n    } else if (disp + this.buffer.ydisp >= this.buffer.ybase) {\n      this._userScrolling = false;\n    }\n\n    const oldYdisp = this.buffer.ydisp;\n    this.buffer.ydisp = Math.max(Math.min(this.buffer.ydisp + disp, this.buffer.ybase), 0);\n\n    // No change occurred, don't trigger scroll/refresh\n    if (oldYdisp === this.buffer.ydisp) {\n      return;\n    }\n\n    if (!suppressScrollEvent) {\n      this._onScroll.fire(this.buffer.ydisp);\n    }\n\n    this.refresh(0, this.rows - 1);\n  }\n\n  /**\n   * Scroll the display of the terminal by a number of pages.\n   * @param pageCount The number of pages to scroll (negative scrolls up).\n   */\n  public scrollPages(pageCount: number): void {\n    this.scrollLines(pageCount * (this.rows - 1));\n  }\n\n  /**\n   * Scrolls the display of the terminal to the top.\n   */\n  public scrollToTop(): void {\n    this.scrollLines(-this.buffer.ydisp);\n  }\n\n  /**\n   * Scrolls the display of the terminal to the bottom.\n   */\n  public scrollToBottom(): void {\n    this.scrollLines(this.buffer.ybase - this.buffer.ydisp);\n  }\n\n  public scrollToLine(line: number): void {\n    const scrollAmount = line - this.buffer.ydisp;\n    if (scrollAmount !== 0) {\n      this.scrollLines(scrollAmount);\n    }\n  }\n\n  public paste(data: string): void {\n    paste(data, this.textarea, this.bracketedPasteMode, this._coreService);\n  }\n\n  /**\n   * Attaches a custom key event handler which is run before keys are processed,\n   * giving consumers of xterm.js ultimate control as to what keys should be\n   * processed by the terminal and what keys should not.\n   * @param customKeyEventHandler The custom KeyboardEvent handler to attach.\n   * This is a function that takes a KeyboardEvent, allowing consumers to stop\n   * propagation and/or prevent the default action. The function returns whether\n   * the event should be processed by xterm.js.\n   */\n  public attachCustomKeyEventHandler(customKeyEventHandler: CustomKeyEventHandler): void {\n    this._customKeyEventHandler = customKeyEventHandler;\n  }\n\n  /** Add handler for ESC escape sequence. See xterm.d.ts for details. */\n  public addEscHandler(id: IFunctionIdentifier, callback: () => boolean): IDisposable {\n    return this._inputHandler.addEscHandler(id, callback);\n  }\n\n  /** Add handler for DCS escape sequence. See xterm.d.ts for details. */\n  public addDcsHandler(id: IFunctionIdentifier, callback: (data: string, param: IParams) => boolean): IDisposable {\n    return this._inputHandler.addDcsHandler(id, callback);\n  }\n\n  /** Add handler for CSI escape sequence. See xterm.d.ts for details. */\n  public addCsiHandler(id: IFunctionIdentifier, callback: (params: IParams) => boolean): IDisposable {\n    return this._inputHandler.addCsiHandler(id, callback);\n  }\n  /** Add handler for OSC escape sequence. See xterm.d.ts for details. */\n  public addOscHandler(ident: number, callback: (data: string) => boolean): IDisposable {\n    return this._inputHandler.addOscHandler(ident, callback);\n  }\n\n  /**\n   * Registers a link matcher, allowing custom link patterns to be matched and\n   * handled.\n   * @param regex The regular expression to search for, specifically\n   * this searches the textContent of the rows. You will want to use \\s to match\n   * a space ' ' character for example.\n   * @param handler The callback when the link is called.\n   * @param options Options for the link matcher.\n   * @return The ID of the new matcher, this can be used to deregister.\n   */\n  public registerLinkMatcher(regex: RegExp, handler: LinkMatcherHandler, options?: ILinkMatcherOptions): number {\n    const matcherId = this.linkifier.registerLinkMatcher(regex, handler, options);\n    this.refresh(0, this.rows - 1);\n    return matcherId;\n  }\n\n  /**\n   * Deregisters a link matcher if it has been registered.\n   * @param matcherId The link matcher's ID (returned after register)\n   */\n  public deregisterLinkMatcher(matcherId: number): void {\n    if (this.linkifier.deregisterLinkMatcher(matcherId)) {\n      this.refresh(0, this.rows - 1);\n    }\n  }\n\n  public registerCharacterJoiner(handler: CharacterJoinerHandler): number {\n    const joinerId = this._renderService.registerCharacterJoiner(handler);\n    this.refresh(0, this.rows - 1);\n    return joinerId;\n  }\n\n  public deregisterCharacterJoiner(joinerId: number): void {\n    if (this._renderService.deregisterCharacterJoiner(joinerId)) {\n      this.refresh(0, this.rows - 1);\n    }\n  }\n\n  public get markers(): IMarker[] {\n    return this.buffer.markers;\n  }\n\n  public addMarker(cursorYOffset: number): IMarker {\n    // Disallow markers on the alt buffer\n    if (this.buffer !== this.buffers.normal) {\n      return;\n    }\n\n    return this.buffer.addMarker(this.buffer.ybase + this.buffer.y + cursorYOffset);\n  }\n\n  /**\n   * Gets whether the terminal has an active selection.\n   */\n  public hasSelection(): boolean {\n    return this._selectionService ? this._selectionService.hasSelection : false;\n  }\n\n  /**\n   * Selects text within the terminal.\n   * @param column The column the selection starts at..\n   * @param row The row the selection starts at.\n   * @param length The length of the selection.\n   */\n  public select(column: number, row: number, length: number): void {\n    this._selectionService.setSelection(column, row, length);\n  }\n\n  /**\n   * Gets the terminal's current selection, this is useful for implementing copy\n   * behavior outside of xterm.js.\n   */\n  public getSelection(): string {\n    return this._selectionService ? this._selectionService.selectionText : '';\n  }\n\n  public getSelectionPosition(): ISelectionPosition | undefined {\n    if (!this._selectionService.hasSelection) {\n      return undefined;\n    }\n\n    return {\n      startColumn: this._selectionService.selectionStart[0],\n      startRow: this._selectionService.selectionStart[1],\n      endColumn: this._selectionService.selectionEnd[0],\n      endRow: this._selectionService.selectionEnd[1]\n    };\n  }\n\n  /**\n   * Clears the current terminal selection.\n   */\n  public clearSelection(): void {\n    if (this._selectionService) {\n      this._selectionService.clearSelection();\n    }\n  }\n\n  /**\n   * Selects all text within the terminal.\n   */\n  public selectAll(): void {\n    if (this._selectionService) {\n      this._selectionService.selectAll();\n    }\n  }\n\n  public selectLines(start: number, end: number): void {\n    if (this._selectionService) {\n      this._selectionService.selectLines(start, end);\n    }\n  }\n\n  /**\n   * Handle a keydown event\n   * Key Resources:\n   *   - https://developer.mozilla.org/en-US/docs/DOM/KeyboardEvent\n   * @param ev The keydown event to be handled.\n   */\n  protected _keyDown(event: KeyboardEvent): boolean {\n    this._keyDownHandled = false;\n\n    if (this._customKeyEventHandler && this._customKeyEventHandler(event) === false) {\n      return false;\n    }\n\n    if (!this._compositionHelper.keydown(event)) {\n      if (this.buffer.ybase !== this.buffer.ydisp) {\n        this.scrollToBottom();\n      }\n      return false;\n    }\n\n    const result = evaluateKeyboardEvent(event, this._coreService.decPrivateModes.applicationCursorKeys, this.browser.isMac, this.options.macOptionIsMeta);\n\n    this.updateCursorStyle(event);\n\n    if (result.type === KeyboardResultType.PAGE_DOWN || result.type === KeyboardResultType.PAGE_UP) {\n      const scrollCount = this.rows - 1;\n      this.scrollLines(result.type === KeyboardResultType.PAGE_UP ? -scrollCount : scrollCount);\n      return this.cancel(event, true);\n    }\n\n    if (result.type === KeyboardResultType.SELECT_ALL) {\n      this.selectAll();\n    }\n\n    if (this._isThirdLevelShift(this.browser, event)) {\n      return true;\n    }\n\n    if (result.cancel) {\n      // The event is canceled at the end already, is this necessary?\n      this.cancel(event, true);\n    }\n\n    if (!result.key) {\n      return true;\n    }\n\n    // If ctrl+c or enter is being sent, clear out the textarea. This is done so that screen readers\n    // will announce deleted characters. This will not work 100% of the time but it should cover\n    // most scenarios.\n    if (result.key === C0.ETX || result.key === C0.CR) {\n      this.textarea.value = '';\n    }\n\n    this._onKey.fire({ key: result.key, domEvent: event });\n    this.showCursor();\n    this._coreService.triggerDataEvent(result.key, true);\n\n    // Cancel events when not in screen reader mode so events don't get bubbled up and handled by\n    // other listeners. When screen reader mode is enabled, this could cause issues if the event\n    // is handled at a higher level, this is a compromise in order to echo keys to the screen\n    // reader.\n    if (!this.optionsService.options.screenReaderMode) {\n      return this.cancel(event, true);\n    }\n\n    this._keyDownHandled = true;\n  }\n\n  private _isThirdLevelShift(browser: IBrowser, ev: IKeyboardEvent): boolean {\n    const thirdLevelKey =\n        (browser.isMac && !this.options.macOptionIsMeta && ev.altKey && !ev.ctrlKey && !ev.metaKey) ||\n        (browser.isWindows && ev.altKey && ev.ctrlKey && !ev.metaKey);\n\n    if (ev.type === 'keypress') {\n      return thirdLevelKey;\n    }\n\n    // Don't invoke for arrows, pageDown, home, backspace, etc. (on non-keypress events)\n    return thirdLevelKey && (!ev.keyCode || ev.keyCode > 47);\n  }\n\n  /**\n   * Set the G level of the terminal\n   * @param g\n   */\n  public setgLevel(g: number): void {\n    this.glevel = g;\n    this.charset = this.charsets[g];\n  }\n\n  /**\n   * Set the charset for the given G level of the terminal\n   * @param g\n   * @param charset\n   */\n  public setgCharset(g: number, charset: ICharset): void {\n    this.charsets[g] = charset;\n    if (this.glevel === g) {\n      this.charset = charset;\n    }\n  }\n\n  protected _keyUp(ev: KeyboardEvent): void {\n    if (this._customKeyEventHandler && this._customKeyEventHandler(ev) === false) {\n      return;\n    }\n\n    if (!wasModifierKeyOnlyEvent(ev)) {\n      this.focus();\n    }\n\n    this.updateCursorStyle(ev);\n  }\n\n  /**\n   * Handle a keypress event.\n   * Key Resources:\n   *   - https://developer.mozilla.org/en-US/docs/DOM/KeyboardEvent\n   * @param ev The keypress event to be handled.\n   */\n  protected _keyPress(ev: KeyboardEvent): boolean {\n    let key;\n\n    if (this._keyDownHandled) {\n      return false;\n    }\n\n    if (this._customKeyEventHandler && this._customKeyEventHandler(ev) === false) {\n      return false;\n    }\n\n    this.cancel(ev);\n\n    if (ev.charCode) {\n      key = ev.charCode;\n    } else if (ev.which === null || ev.which === undefined) {\n      key = ev.keyCode;\n    } else if (ev.which !== 0 && ev.charCode !== 0) {\n      key = ev.which;\n    } else {\n      return false;\n    }\n\n    if (!key || (\n      (ev.altKey || ev.ctrlKey || ev.metaKey) && !this._isThirdLevelShift(this.browser, ev)\n    )) {\n      return false;\n    }\n\n    key = String.fromCharCode(key);\n\n    this._onKey.fire({ key, domEvent: ev });\n    this.showCursor();\n    this._coreService.triggerDataEvent(key, true);\n\n    return true;\n  }\n\n  /**\n   * Ring the bell.\n   * Note: We could do sweet things with webaudio here\n   */\n  public bell(): void {\n    if (this._soundBell()) {\n      this._soundService.playBellSound();\n    }\n\n    if (this._visualBell()) {\n      this.element.classList.add('visual-bell-active');\n      clearTimeout(this._visualBellTimer);\n      this._visualBellTimer = window.setTimeout(() => {\n        this.element.classList.remove('visual-bell-active');\n      }, 200);\n    }\n  }\n\n  /**\n   * Resizes the terminal.\n   *\n   * @param x The number of columns to resize to.\n   * @param y The number of rows to resize to.\n   */\n  public resize(x: number, y: number): void {\n    if (isNaN(x) || isNaN(y)) {\n      return;\n    }\n\n    if (x === this.cols && y === this.rows) {\n      // Check if we still need to measure the char size (fixes #785).\n      if (this._charSizeService && !this._charSizeService.hasValidSize) {\n        this._charSizeService.measure();\n      }\n      return;\n    }\n\n    if (x < MINIMUM_COLS) x = MINIMUM_COLS;\n    if (y < MINIMUM_ROWS) y = MINIMUM_ROWS;\n\n    this.buffers.resize(x, y);\n\n    this._bufferService.resize(x, y);\n    this.buffers.setupTabStops(this.cols);\n\n    if (this._charSizeService) {\n      this._charSizeService.measure();\n    }\n\n    // Sync the scroll area to make sure scroll events don't fire and scroll the viewport to an\n    // invalid location\n    this.viewport.syncScrollArea(true);\n\n    this.refresh(0, this.rows - 1);\n    this._onResize.fire({ cols: x, rows: y });\n  }\n\n  /**\n   * Clear the entire buffer, making the prompt line the new first line.\n   */\n  public clear(): void {\n    if (this.buffer.ybase === 0 && this.buffer.y === 0) {\n      // Don't clear if it's already clear\n      return;\n    }\n    this.buffer.lines.set(0, this.buffer.lines.get(this.buffer.ybase + this.buffer.y));\n    this.buffer.lines.length = 1;\n    this.buffer.ydisp = 0;\n    this.buffer.ybase = 0;\n    this.buffer.y = 0;\n    for (let i = 1; i < this.rows; i++) {\n      this.buffer.lines.push(this.buffer.getBlankLine(DEFAULT_ATTR_DATA));\n    }\n    this.refresh(0, this.rows - 1);\n    this._onScroll.fire(this.buffer.ydisp);\n  }\n\n  /**\n   * Evaluate if the current terminal is the given argument.\n   * @param term The terminal name to evaluate\n   */\n  public is(term: string): boolean {\n    return (this.options.termName + '').indexOf(term) === 0;\n  }\n\n  /**\n   * Emit the data event and populate the given data.\n   * @param data The data to populate in the event.\n   */\n  // public handler(data: string): void {\n  //   // Prevents all events to pty process if stdin is disabled\n  //   if (this.options.disableStdin) {\n  //     return;\n  //   }\n\n  //   // Clear the selection if the selection manager is available and has an active selection\n  //   if (this.selectionService && this.selectionService.hasSelection) {\n  //     this.selectionService.clearSelection();\n  //   }\n\n  //   // Input is being sent to the terminal, the terminal should focus the prompt.\n  //   if (this.buffer.ybase !== this.buffer.ydisp) {\n  //     this.scrollToBottom();\n  //   }\n  //   this._onData.fire(data);\n  // }\n\n  /**\n   * Emit the 'title' event and populate the given title.\n   * @param title The title to populate in the event.\n   */\n  public handleTitle(title: string): void {\n    this._onTitleChange.fire(title);\n  }\n\n  /**\n   * Reset terminal.\n   * Note: Calling this directly from JS is synchronous but does not clear\n   * input buffers and does not reset the parser, thus the terminal will\n   * continue to apply pending input data.\n   * If you need in band reset (synchronous with input data) consider\n   * using DECSTR (soft reset, CSI ! p) or RIS instead (hard reset, ESC c).\n   */\n  public reset(): void {\n    /**\n     * Since _setup handles a full terminal creation, we have to carry forward\n     * a few things that should not reset.\n     */\n    this.options.rows = this.rows;\n    this.options.cols = this.cols;\n    const customKeyEventHandler = this._customKeyEventHandler;\n    const inputHandler = this._inputHandler;\n    const cursorState = this.cursorState;\n    const userScrolling = this._userScrolling;\n\n    this._setup();\n    this._bufferService.reset();\n    this._coreService.reset();\n    this._coreMouseService.reset();\n    if (this._selectionService) {\n      this._selectionService.reset();\n    }\n\n    // reattach\n    this._customKeyEventHandler = customKeyEventHandler;\n    this._inputHandler = inputHandler;\n    this.cursorState = cursorState;\n    this._userScrolling = userScrolling;\n\n    // do a full screen refresh\n    this.refresh(0, this.rows - 1);\n    if (this.viewport) {\n      this.viewport.syncScrollArea();\n    }\n  }\n\n  // TODO: Remove cancel function and cancelEvents option\n  public cancel(ev: Event, force?: boolean): boolean {\n    if (!this.options.cancelEvents && !force) {\n      return;\n    }\n    ev.preventDefault();\n    ev.stopPropagation();\n    return false;\n  }\n\n  private _visualBell(): boolean {\n    return false;\n    // return this.options.bellStyle === 'visual' ||\n    //     this.options.bellStyle === 'both';\n  }\n\n  private _soundBell(): boolean {\n    return this.options.bellStyle === 'sound';\n    // return this.options.bellStyle === 'sound' ||\n    //     this.options.bellStyle === 'both';\n  }\n\n  public write(data: string | Uint8Array, callback?: () => void): void {\n    this._writeBuffer.write(data, callback);\n  }\n\n  public writeSync(data: string | Uint8Array): void {\n    this._writeBuffer.writeSync(data);\n  }\n}\n\n/**\n * Helpers\n */\n\nfunction wasModifierKeyOnlyEvent(ev: KeyboardEvent): boolean {\n  return ev.keyCode === 16 || // Shift\n    ev.keyCode === 17 || // Ctrl\n    ev.keyCode === 18; // Alt\n}\n","projectRootPath":"/home/daimms/dev/Tyriar/xterm.js","scriptKindName":"TS"}]}}
Info 443  [11:10:14.392] FileWatcher:: Close:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts 500 Project:  WatchType: Closed Script info
Info 444  [11:10:14.393] ConfigFilePresence:: Current Watches: :: File: /home/daimms/dev/Tyriar/xterm.js/src/renderer/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles:  Status: File removed from open files impacted by this config file
Info 445  [11:10:14.393] ConfigFilePresence:: Current Watches: :: File: /home/daimms/dev/Tyriar/xterm.js/src/renderer/jsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles:  Status: File removed from open files impacted by this config file
Info 446  [11:10:14.393] ConfigFilePresence:: Current Watches: Config file:: File: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts Status: File removed from open files impacted by this config file
Info 447  [11:10:14.393] FileWatcher:: Added:: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts 500 Project:  WatchType: Closed Script info
Info 448  [11:10:14.393] Search path: /home/daimms/dev/Tyriar/xterm.js/src
Info 449  [11:10:14.394] ConfigFilePresence:: Current Watches: Config file:: File: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json Currently impacted open files: RootsOfInferredProjects:  OtherOpenFiles: /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts,/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts Status: File added to open files impacted by this config file
Info 450  [11:10:14.394] For info: /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts :: Config file name: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 451  [11:10:14.394] Project '/home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json' (Configured) 0
Info 451  [11:10:14.394] 	Files (70)
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/chai/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Platform.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/Services.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/OptionsService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Constants.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/AttributeData.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/CellData.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Marker.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/data/Charsets.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/data/EscapeSequences.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/utf8/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Constants.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/BufferService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/InstantiationService.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/LogService.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mocha/index.d.ts

Info 451  [11:10:14.394] -----------------------------------------------
Info 451  [11:10:14.394] Project '/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json' (Configured) 1
Info 451  [11:10:14.394] 	Files (157)
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es5.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.dom.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.scripthost.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	/home/daimms/.vscode-server-insiders/bin/a14de79ac74f2e0e6566d3cc9410eeb7dc769cde/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/LocalizableStrings.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/EventEmitter.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/CircularList.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/Services.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Platform.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/RenderDebouncer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Lifecycle.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Lifecycle.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/ScreenDprMonitor.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/selection/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/Services.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/AccessibilityManager.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/chai/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/data/EscapeSequences.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/data/Charsets.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/CharWidth.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/Params.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/EscapeSequenceParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/TypedArrayUtils.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/TextDecoder.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/AttributeData.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferLine.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/CellData.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/OscParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/parser/DcsParser.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Marker.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/Buffer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/CompositionHelper.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Viewport.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Clipboard.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/Types.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/BaseCharAtlas.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/BaseRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/TextRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/SelectionRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/CursorRenderLayer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/LinkRenderLayer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/CharacterJoinerRegistry.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/CharAtlasCache.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/Renderer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/Linkifier.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/selection/SelectionModel.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/SelectionService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/SoundService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/MouseZoneManager.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/dom/DomRendererRowFactory.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/Constants.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/renderer/dom/DomRenderer.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/Keyboard.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/WindowsMode.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/ColorManager.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/RenderService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/OptionsService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/CharSizeService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/BufferService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/services/MouseService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/LogService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/DirtyRowService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/InstantiationService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/services/CoreMouseService.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/input/WriteBuffer.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts
	/home/daimms/dev/Tyriar/xterm.js/src/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/TestUtils.test.d.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/Clone.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/node/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/events/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/minimatch/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/glob/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/node-pty/typings/node-pty.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/Terminal2.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Clipboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/jsdom/node_modules/parse5/lib/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/tough-cookie/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/jsdom/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/ColorManager.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/Linkifier.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/TestUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/CompositionHelper.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/Mouse.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/Mouse.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/input/MoveToCell.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/input/MoveToCell.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/CharacterJoinerRegistry.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/GridCache.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/GridCache.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/RendererUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/CharAtlasUtils.ts
	/home/daimms/dev/Tyriar/xterm.js/out/browser/renderer/atlas/LRUMap.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/DynamicCharAtlas.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/atlas/LRUMap.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/renderer/dom/DomRendererRowFactory.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/selection/SelectionModel.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/browser/services/SelectionService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CharWidth.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/CircularList.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Clone.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/EventEmitter.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/Lifecycle.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/TypedArrayUtils.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/Buffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferLine.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferReflow.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferReflow.test.ts
	/home/daimms/dev/Tyriar/xterm.js/out/common/buffer/BufferSet.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/buffer/BufferSet.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/Keyboard.test.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/utf8/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/TextDecoder.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/input/WriteBuffer.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/DcsParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/EscapeSequenceParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/OscParser.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/parser/Params.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/CoreMouseService.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/common/services/ServiceRegistry.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/AddonManager.test.ts
	/home/daimms/dev/Tyriar/xterm.js/src/public/Terminal.ts
	/home/daimms/dev/Tyriar/xterm.js/typings/xterm.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/app-root-path/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/cli-table/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/fs-extra/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/decimal.js/decimal.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mathjs/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/mocha/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/puppeteer/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/tapable/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/source-map/source-map.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/uglify-js/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/webpack/index.d.ts
	/home/daimms/dev/Tyriar/xterm.js/node_modules/@types/ws/index.d.ts

Info 451  [11:10:14.394] -----------------------------------------------
Info 451  [11:10:14.394] Open files: 
Info 451  [11:10:14.394] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 451  [11:10:14.394] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/common/tsconfig.json,/home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 451  [11:10:14.394] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 451  [11:10:14.394] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 451  [11:10:14.395] 	FileName: /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts ProjectRootPath: /home/daimms/dev/Tyriar/xterm.js
Info 451  [11:10:14.395] 		Projects: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Perf 451  [11:10:14.395] 11::updateOpen: elapsed time (in milliseconds) 3.3647
Info 452  [11:10:14.395] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":11,"success":true,"body":true}
Info 453  [11:10:14.395] request:
    {"seq":12,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":1,"startOffset":1,"endLine":1,"endOffset":1}}
Perf 454  [11:10:14.398] 12::getApplicableRefactors: elapsed time (in milliseconds) 3.1890
Info 455  [11:10:14.398] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":12,"success":true,"body":[]}
Info 456  [11:10:14.516] request:
    {"seq":13,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","line":921,"offset":22}}
Perf 457  [11:10:14.538] 13::quickinfo: elapsed time (in milliseconds) 22.3801
Info 458  [11:10:14.538] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":13,"success":true,"body":{"kind":"alias","kindModifiers":"","start":{"line":921,"offset":19},"end":{"line":921,"offset":43},"displayString":"(alias) addDisposableDomListener(node: Element | Window | Document, type: string, handler: (e: any) => void, useCapture?: boolean): IDisposable\nimport addDisposableDomListener","documentation":"","tags":[]}}
Info 459  [11:10:14.539] request:
    {"seq":14,"type":"request","command":"configure","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","formatOptions":{"tabSize":2,"indentSize":2,"convertTabsToSpaces":true,"newLineCharacter":"\n","insertSpaceAfterCommaDelimiter":true,"insertSpaceAfterConstructor":false,"insertSpaceAfterSemicolonInForStatements":true,"insertSpaceBeforeAndAfterBinaryOperators":true,"insertSpaceAfterKeywordsInControlFlowStatements":true,"insertSpaceAfterFunctionKeywordForAnonymousFunctions":true,"insertSpaceBeforeFunctionParenthesis":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces":true,"insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces":false,"insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces":false,"insertSpaceAfterTypeAssertion":false,"placeOpenBraceOnNewLineForFunctions":false,"placeOpenBraceOnNewLineForControlBlocks":false,"semicolons":"ignore"},"preferences":{"quotePreference":"single","allowTextChangesInNewFiles":true,"providePrefixAndSuffixTextForRename":true,"allowRenameOfImportPath":true}}}
Info 460  [11:10:14.539] Host configuration update for file /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts
Info 461  [11:10:14.539] response:
    {"seq":0,"type":"response","command":"configure","request_seq":14,"success":true}
Perf 462  [11:10:14.539] 14::configure: async elapsed time (in milliseconds) 0.2108
Info 463  [11:10:14.541] request:
    {"seq":15,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":938,"startOffset":18,"endLine":938,"endOffset":18}}
Perf 464  [11:10:14.542] 15::getApplicableRefactors: elapsed time (in milliseconds) 0.7034
Info 465  [11:10:14.542] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":15,"success":true,"body":[]}
Info 466  [11:10:14.692] request:
    {"seq":16,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"]}}
Perf 467  [11:10:14.692] 16::geterr: async elapsed time (in milliseconds) 0.2528
Info 468  [11:10:14.693] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 469  [11:10:14.694] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 470  [11:10:14.694] [typescript-tslint-plugin] "(runTsLint) start"
Info 471  [11:10:14.694] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 472  [11:10:14.694] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 473  [11:10:14.694] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 474  [11:10:14.694] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 475  [11:10:14.694] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 476  [11:10:14.694] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 477  [11:10:14.694] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 478  [11:10:14.694] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 479  [11:10:14.701] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 480  [11:10:14.701] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 481  [11:10:14.702] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 482  [11:10:14.708] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 483  [11:10:14.708] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 484  [11:10:14.708] [typescript-tslint-plugin] "(runTsLint) start"
Info 485  [11:10:14.708] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 486  [11:10:14.708] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 487  [11:10:14.708] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 488  [11:10:14.708] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 489  [11:10:14.708] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 490  [11:10:14.708] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 491  [11:10:14.708] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 492  [11:10:14.708] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 493  [11:10:14.842] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 494  [11:10:14.853] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 495  [11:10:14.860] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":57,"offset":8},"end":{"line":57,"offset":14},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":101},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":74},"end":{"line":519,"offset":79},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"'diffToTop' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"'diffToBottom' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"'clearWrap' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"'collectAndFlag' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 496  [11:10:14.861] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 497  [11:10:15.117] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts'"
Info 498  [11:10:15.117] [typescript-tslint-plugin] "(runTsLint) start"
Info 499  [11:10:15.117] [typescript-tslint-plugin] "(loadLibrary) trying to load /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 500  [11:10:15.154] [typescript-tslint-plugin] "(loadLibrary) Resolved tslint to /home/daimms/dev/Tyriar/xterm.js/node_modules/tslint/lib/index.js"
Info 501  [11:10:15.154] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 502  [11:10:15.154] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 503  [11:10:15.154] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 504  [11:10:15.154] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 505  [11:10:15.154] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 506  [11:10:15.154] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 507  [11:10:15.155] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 508  [11:10:15.155] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 509  [11:10:15.275] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 510  [11:10:15.276] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[{"start":{"line":1126,"offset":31},"end":{"line":1126,"offset":44},"text":"Property 'addEscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1131,"offset":31},"end":{"line":1131,"offset":44},"text":"Property 'addDcsHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1136,"offset":31},"end":{"line":1136,"offset":44},"text":"Property 'addCsiHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1140,"offset":31},"end":{"line":1140,"offset":44},"text":"Property 'addOscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"}]}}
Info 511  [11:10:15.280] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 512  [11:10:15.280] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":16}}
Info 513  [11:10:15.601] request:
    {"seq":17,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":938,"startOffset":18,"endLine":938,"endOffset":18}}
Perf 514  [11:10:15.603] 17::getApplicableRefactors: elapsed time (in milliseconds) 1.9949
Info 515  [11:10:15.603] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":17,"success":true,"body":[]}
Info 516  [11:10:17.780] request:
    {"seq":18,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":1126,"startOffset":31,"endLine":1126,"endOffset":31}}
Perf 517  [11:10:17.782] 18::getApplicableRefactors: elapsed time (in milliseconds) 2.3858
Info 518  [11:10:17.782] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":18,"success":true,"body":[]}
Info 519  [11:10:17.784] request:
    {"seq":19,"type":"request","command":"getCodeFixes","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":1126,"startOffset":31,"endLine":1126,"endOffset":44,"errorCodes":[2339]}}
Info 520  [11:10:17.828] [typescript-tslint-plugin] "getCodeFixes 2339"
Info 521  [11:10:17.828] [typescript-tslint-plugin] "[{\"fixName\":\"addMissingMember\",\"description\":\"Declare method 'addEscHandler'\",\"changes\":[{\"fileName\":\"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts\",\"textChanges\":[{\"span\":{\"start\":4454,\"length\":0},\"newText\":\"\\n  addEscHandler(id: IFunctionIdentifier, callback: () => boolean): import(\\\"xterm\\\").IDisposable {\\n    throw new Error('Method not implemented.');\\n  }\"}]}],\"fixId\":\"addMissingMember\",\"fixAllDescription\":\"Add all missing members\"},{\"fixName\":\"addMissingMember\",\"description\":\"Declare property 'addEscHandler'\",\"changes\":[{\"fileName\":\"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts\",\"textChanges\":[{\"span\":{\"start\":4737,\"length\":0},\"newText\":\"  addEscHandler: any;\\n\"}]}],\"fixId\":\"addMissingMember\",\"fixAllDescription\":\"Add all missing members\"},{\"fixName\":\"addMissingMember\",\"description\":\"Add index signature for property 'addEscHandler'\",\"changes\":[{\"fileName\":\"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts\",\"textChanges\":[{\"span\":{\"start\":4454,\"length\":0},\"newText\":\"\\n  [x: string]: any;\"}]}]}]"
Perf 522  [11:10:17.829] 19::getCodeFixes: elapsed time (in milliseconds) 44.7307
Info 523  [11:10:17.829] response:
    {"seq":0,"type":"response","command":"getCodeFixes","request_seq":19,"success":true,"body":[{"fixName":"addMissingMember","description":"Declare method 'addEscHandler'","changes":[{"fileName":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","textChanges":[{"start":{"line":125,"offset":72},"end":{"line":125,"offset":72},"newText":"\n  addEscHandler(id: IFunctionIdentifier, callback: () => boolean): import(\"xterm\").IDisposable {\n    throw new Error('Method not implemented.');\n  }"}]}],"fixId":"addMissingMember","fixAllDescription":"Add all missing members"},{"fixName":"addMissingMember","description":"Declare property 'addEscHandler'","changes":[{"fileName":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","textChanges":[{"start":{"line":132,"offset":1},"end":{"line":132,"offset":1},"newText":"  addEscHandler: any;\n"}]}],"fixId":"addMissingMember","fixAllDescription":"Add all missing members"},{"fixName":"addMissingMember","description":"Add index signature for property 'addEscHandler'","changes":[{"fileName":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","textChanges":[{"start":{"line":125,"offset":72},"end":{"line":125,"offset":72},"newText":"\n  [x: string]: any;"}]}]}]}
Info 524  [11:10:18.362] request:
    {"seq":20,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","line":1126,"offset":55}}
Perf 525  [11:10:18.366] 20::quickinfo: elapsed time (in milliseconds) 4.1129
Info 526  [11:10:18.366] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":20,"success":true,"body":{"kind":"parameter","kindModifiers":"","start":{"line":1126,"offset":49},"end":{"line":1126,"offset":57},"displayString":"(parameter) callback: () => boolean","documentation":"","tags":[]}}
Info 527  [11:10:18.802] request:
    {"seq":21,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","line":1126,"offset":54}}
Perf 528  [11:10:18.805] 21::quickinfo: elapsed time (in milliseconds) 2.9554
Info 529  [11:10:18.805] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":21,"success":true,"body":{"kind":"parameter","kindModifiers":"","start":{"line":1126,"offset":49},"end":{"line":1126,"offset":57},"displayString":"(parameter) callback: () => boolean","documentation":"","tags":[]}}
Info 530  [11:10:20.189] request:
    {"seq":22,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":1122,"startOffset":4,"endLine":1122,"endOffset":4}}
Perf 531  [11:10:20.191] 22::getApplicableRefactors: elapsed time (in milliseconds) 2.1839
Info 532  [11:10:20.191] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":22,"success":true,"body":[]}
Info 533  [11:10:21.24] request:
    {"seq":23,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","startLine":1,"startOffset":1,"endLine":1,"endOffset":1}}
Perf 534  [11:10:21.24] 23::getApplicableRefactors: elapsed time (in milliseconds) 0.6135
Info 535  [11:10:21.24] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":23,"success":true,"body":[]}
Info 536  [11:10:21.222] request:
    {"seq":24,"type":"request","command":"configure","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","formatOptions":{"tabSize":2,"indentSize":2,"convertTabsToSpaces":true,"newLineCharacter":"\n","insertSpaceAfterCommaDelimiter":true,"insertSpaceAfterConstructor":false,"insertSpaceAfterSemicolonInForStatements":true,"insertSpaceBeforeAndAfterBinaryOperators":true,"insertSpaceAfterKeywordsInControlFlowStatements":true,"insertSpaceAfterFunctionKeywordForAnonymousFunctions":true,"insertSpaceBeforeFunctionParenthesis":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces":true,"insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces":false,"insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces":false,"insertSpaceAfterTypeAssertion":false,"placeOpenBraceOnNewLineForFunctions":false,"placeOpenBraceOnNewLineForControlBlocks":false,"semicolons":"ignore"},"preferences":{"quotePreference":"single","allowTextChangesInNewFiles":true,"providePrefixAndSuffixTextForRename":true,"allowRenameOfImportPath":true}}}
Info 537  [11:10:21.222] Host configuration update for file /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts
Info 538  [11:10:21.222] response:
    {"seq":0,"type":"response","command":"configure","request_seq":24,"success":true}
Perf 539  [11:10:21.222] 24::configure: async elapsed time (in milliseconds) 0.3529
Info 540  [11:10:21.223] request:
    {"seq":25,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","startLine":24,"startOffset":48,"endLine":24,"endOffset":48}}
Perf 541  [11:10:21.223] 25::getApplicableRefactors: elapsed time (in milliseconds) 0.6577
Info 542  [11:10:21.223] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":25,"success":true,"body":[]}
Info 543  [11:10:21.325] request:
    {"seq":26,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"]}}
Perf 544  [11:10:21.326] 26::geterr: async elapsed time (in milliseconds) 0.6132
Info 545  [11:10:21.327] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 546  [11:10:21.327] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 547  [11:10:21.328] [typescript-tslint-plugin] "(runTsLint) start"
Info 548  [11:10:21.328] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 549  [11:10:21.328] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 550  [11:10:21.328] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 551  [11:10:21.328] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 552  [11:10:21.328] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 553  [11:10:21.328] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 554  [11:10:21.328] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 555  [11:10:21.328] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 556  [11:10:21.334] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 557  [11:10:21.334] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 558  [11:10:21.334] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 559  [11:10:21.346] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 560  [11:10:21.349] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 561  [11:10:21.349] [typescript-tslint-plugin] "(runTsLint) start"
Info 562  [11:10:21.349] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 563  [11:10:21.349] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 564  [11:10:21.349] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 565  [11:10:21.349] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 566  [11:10:21.349] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 567  [11:10:21.349] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 568  [11:10:21.353] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 569  [11:10:21.353] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 570  [11:10:21.522] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 571  [11:10:21.529] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 572  [11:10:21.537] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":57,"offset":8},"end":{"line":57,"offset":14},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":101},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":74},"end":{"line":519,"offset":79},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"'diffToTop' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"'diffToBottom' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"'clearWrap' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"'collectAndFlag' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 573  [11:10:21.538] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 574  [11:10:21.538] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts'"
Info 575  [11:10:21.538] [typescript-tslint-plugin] "(runTsLint) start"
Info 576  [11:10:21.538] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 577  [11:10:21.538] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 578  [11:10:21.538] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 579  [11:10:21.538] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 580  [11:10:21.538] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 581  [11:10:21.538] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 582  [11:10:21.539] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 583  [11:10:21.539] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 584  [11:10:21.594] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 585  [11:10:21.594] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[{"start":{"line":1126,"offset":31},"end":{"line":1126,"offset":44},"text":"Property 'addEscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1131,"offset":31},"end":{"line":1131,"offset":44},"text":"Property 'addDcsHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1136,"offset":31},"end":{"line":1136,"offset":44},"text":"Property 'addCsiHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1140,"offset":31},"end":{"line":1140,"offset":44},"text":"Property 'addOscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"}]}}
Info 586  [11:10:21.597] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 587  [11:10:21.597] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":26}}
Info 588  [11:10:23.104] request:
    {"seq":27,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","startLine":1,"startOffset":1,"endLine":1,"endOffset":1}}
Perf 589  [11:10:23.105] 27::getApplicableRefactors: elapsed time (in milliseconds) 0.6912
Info 590  [11:10:23.105] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":27,"success":true,"body":[]}
Info 591  [11:10:23.412] request:
    {"seq":28,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"]}}
Perf 592  [11:10:23.412] 28::geterr: async elapsed time (in milliseconds) 0.6089
Info 593  [11:10:23.425] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 594  [11:10:23.426] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 595  [11:10:23.426] [typescript-tslint-plugin] "(runTsLint) start"
Info 596  [11:10:23.426] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 597  [11:10:23.426] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 598  [11:10:23.426] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 599  [11:10:23.426] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 600  [11:10:23.427] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 601  [11:10:23.427] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 602  [11:10:23.428] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 603  [11:10:23.428] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 604  [11:10:23.531] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 605  [11:10:23.541] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 606  [11:10:23.542] request:
    {"seq":29,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","line":358,"offset":30}}
Perf 607  [11:10:23.546] 29::quickinfo: elapsed time (in milliseconds) 3.8054
Info 608  [11:10:23.546] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":29,"success":true,"body":{"kind":"property","kindModifiers":"private","start":{"line":358,"offset":18},"end":{"line":358,"offset":32},"displayString":"(property) InputHandler._stringDecoder: StringToUtf32","documentation":"","tags":[]}}
Info 609  [11:10:23.546] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":28}}
Info 610  [11:10:23.665] request:
    {"seq":30,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"]}}
Perf 611  [11:10:23.665] 30::geterr: async elapsed time (in milliseconds) 0.4767
Info 612  [11:10:23.667] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 613  [11:10:23.667] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 614  [11:10:23.667] [typescript-tslint-plugin] "(runTsLint) start"
Info 615  [11:10:23.667] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 616  [11:10:23.667] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 617  [11:10:23.667] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 618  [11:10:23.667] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 619  [11:10:23.667] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 620  [11:10:23.668] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 621  [11:10:23.668] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 622  [11:10:23.668] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 623  [11:10:23.674] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 624  [11:10:23.674] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 625  [11:10:23.675] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 626  [11:10:23.684] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 627  [11:10:23.685] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 628  [11:10:23.685] [typescript-tslint-plugin] "(runTsLint) start"
Info 629  [11:10:23.685] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 630  [11:10:23.685] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 631  [11:10:23.685] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 632  [11:10:23.685] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 633  [11:10:23.685] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 634  [11:10:23.685] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 635  [11:10:23.685] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 636  [11:10:23.685] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 637  [11:10:23.787] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 638  [11:10:23.794] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 639  [11:10:23.802] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":57,"offset":8},"end":{"line":57,"offset":14},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":101},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":74},"end":{"line":519,"offset":79},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"'diffToTop' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"'diffToBottom' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"'clearWrap' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"'collectAndFlag' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 640  [11:10:23.803] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 641  [11:10:23.804] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts'"
Info 642  [11:10:23.804] [typescript-tslint-plugin] "(runTsLint) start"
Info 643  [11:10:23.804] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 644  [11:10:23.804] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 645  [11:10:23.804] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 646  [11:10:23.804] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 647  [11:10:23.804] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 648  [11:10:23.804] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 649  [11:10:23.805] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 650  [11:10:23.805] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 651  [11:10:23.869] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 652  [11:10:23.869] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[{"start":{"line":1126,"offset":31},"end":{"line":1126,"offset":44},"text":"Property 'addEscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1131,"offset":31},"end":{"line":1131,"offset":44},"text":"Property 'addDcsHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1136,"offset":31},"end":{"line":1136,"offset":44},"text":"Property 'addCsiHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1140,"offset":31},"end":{"line":1140,"offset":44},"text":"Property 'addOscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"}]}}
Info 653  [11:10:23.872] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 654  [11:10:23.872] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":30}}
Info 655  [11:10:24.269] request:
    {"seq":31,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","line":363,"offset":39}}
Perf 656  [11:10:24.270] 31::quickinfo: elapsed time (in milliseconds) 0.9610
Info 657  [11:10:24.270] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":31,"success":false,"message":"No content available."}
Info 658  [11:11:8.639] request:
    {"seq":32,"type":"request","command":"configure","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","formatOptions":{"tabSize":2,"indentSize":2,"convertTabsToSpaces":true,"newLineCharacter":"\n","insertSpaceAfterCommaDelimiter":true,"insertSpaceAfterConstructor":false,"insertSpaceAfterSemicolonInForStatements":true,"insertSpaceBeforeAndAfterBinaryOperators":true,"insertSpaceAfterKeywordsInControlFlowStatements":true,"insertSpaceAfterFunctionKeywordForAnonymousFunctions":true,"insertSpaceBeforeFunctionParenthesis":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets":false,"insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces":true,"insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces":false,"insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces":false,"insertSpaceAfterTypeAssertion":false,"placeOpenBraceOnNewLineForFunctions":false,"placeOpenBraceOnNewLineForControlBlocks":false,"semicolons":"ignore"},"preferences":{"quotePreference":"single","allowTextChangesInNewFiles":true,"providePrefixAndSuffixTextForRename":true,"allowRenameOfImportPath":true}}}
Info 659  [11:11:8.639] Host configuration update for file /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts
Info 660  [11:11:8.640] response:
    {"seq":0,"type":"response","command":"configure","request_seq":32,"success":true}
Perf 661  [11:11:8.640] 32::configure: async elapsed time (in milliseconds) 0.4692
Info 662  [11:11:8.646] request:
    {"seq":33,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","startLine":360,"startOffset":52,"endLine":360,"endOffset":52}}
Perf 663  [11:11:8.647] 33::getApplicableRefactors: elapsed time (in milliseconds) 0.9511
Info 664  [11:11:8.647] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":33,"success":true,"body":[]}
Info 665  [11:11:9.696] request:
    {"seq":34,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","line":383,"offset":53}}
Perf 666  [11:11:9.711] 34::quickinfo: elapsed time (in milliseconds) 14.9441
Info 667  [11:11:9.712] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":34,"success":true,"body":{"kind":"property","kindModifiers":"","start":{"line":385,"offset":5},"end":{"line":385,"offset":10},"displayString":"(property) const: any","documentation":"","tags":[]}}
Info 668  [11:11:11.454] request:
    {"seq":35,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","startLine":370,"startOffset":66,"endLine":370,"endOffset":66}}
Perf 669  [11:11:11.456] 35::getApplicableRefactors: elapsed time (in milliseconds) 1.5504
Info 670  [11:11:11.456] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":35,"success":true,"body":[]}
Info 671  [11:11:18.526] request:
    {"seq":36,"type":"request","command":"definitionAndBoundSpan","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","line":357,"offset":26}}
Perf 672  [11:11:18.526] 36::definitionAndBoundSpan: elapsed time (in milliseconds) 0.8372
Info 673  [11:11:18.527] response:
    {"seq":0,"type":"response","command":"definitionAndBoundSpan","request_seq":36,"success":true,"body":{"definitions":[]}}
Info 674  [11:11:18.594] request:
    {"seq":37,"type":"request","command":"definitionAndBoundSpan","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","line":360,"offset":30}}
Perf 675  [11:11:18.597] 37::definitionAndBoundSpan: elapsed time (in milliseconds) 2.5994
Info 676  [11:11:18.597] response:
    {"seq":0,"type":"response","command":"definitionAndBoundSpan","request_seq":37,"success":true,"body":{"definitions":[{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"contextStart":{"line":125,"offset":1},"contextEnd":{"line":377,"offset":27}}],"textSpan":{"start":{"line":360,"offset":28},"end":{"line":360,"offset":32}}}}
Info 677  [11:11:19.160] request:
    {"seq":38,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","line":363,"offset":33}}
Perf 678  [11:11:19.161] 38::quickinfo: elapsed time (in milliseconds) 0.7240
Info 679  [11:11:19.161] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":38,"success":false,"message":"No content available."}
Info 680  [11:11:19.546] request:
    {"seq":39,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":1,"startOffset":1,"endLine":1,"endOffset":1}}
Perf 681  [11:11:19.547] 39::getApplicableRefactors: elapsed time (in milliseconds) 0.6821
Info 682  [11:11:19.547] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":39,"success":true,"body":[]}
Info 683  [11:11:19.738] request:
    {"seq":40,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":938,"startOffset":18,"endLine":938,"endOffset":18}}
Perf 684  [11:11:19.740] 40::getApplicableRefactors: elapsed time (in milliseconds) 1.5932
Info 685  [11:11:19.740] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":40,"success":true,"body":[]}
Info 686  [11:11:19.847] request:
    {"seq":41,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"]}}
Perf 687  [11:11:19.847] 41::geterr: async elapsed time (in milliseconds) 0.5784
Info 688  [11:11:19.849] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 689  [11:11:19.850] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts'"
Info 690  [11:11:19.850] [typescript-tslint-plugin] "(runTsLint) start"
Info 691  [11:11:19.850] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 692  [11:11:19.850] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 693  [11:11:19.850] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 694  [11:11:19.850] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 695  [11:11:19.850] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 696  [11:11:19.850] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 697  [11:11:19.850] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 698  [11:11:19.850] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 699  [11:11:19.998] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 700  [11:11:19.998] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[{"start":{"line":1126,"offset":31},"end":{"line":1126,"offset":44},"text":"Property 'addEscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1131,"offset":31},"end":{"line":1131,"offset":44},"text":"Property 'addDcsHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1136,"offset":31},"end":{"line":1136,"offset":44},"text":"Property 'addCsiHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1140,"offset":31},"end":{"line":1140,"offset":44},"text":"Property 'addOscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"}]}}
Info 701  [11:11:20.3] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 702  [11:11:20.4] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 703  [11:11:20.4] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 704  [11:11:20.4] [typescript-tslint-plugin] "(runTsLint) start"
Info 705  [11:11:20.4] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 706  [11:11:20.4] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 707  [11:11:20.4] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 708  [11:11:20.5] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 709  [11:11:20.5] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 710  [11:11:20.5] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 711  [11:11:20.5] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 712  [11:11:20.5] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 713  [11:11:20.8] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 714  [11:11:20.8] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 715  [11:11:20.8] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 716  [11:11:20.14] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 717  [11:11:20.15] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 718  [11:11:20.15] [typescript-tslint-plugin] "(runTsLint) start"
Info 719  [11:11:20.15] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 720  [11:11:20.15] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 721  [11:11:20.15] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 722  [11:11:20.15] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 723  [11:11:20.15] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 724  [11:11:20.15] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 725  [11:11:20.17] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 726  [11:11:20.17] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 727  [11:11:20.118] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 728  [11:11:20.127] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 729  [11:11:20.132] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":57,"offset":8},"end":{"line":57,"offset":14},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":101},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":74},"end":{"line":519,"offset":79},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"'diffToTop' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"'diffToBottom' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"'clearWrap' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"'collectAndFlag' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 730  [11:11:20.132] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":41}}
Info 731  [11:11:20.539] request:
    {"seq":42,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","startLine":1,"startOffset":1,"endLine":1,"endOffset":1}}
Perf 732  [11:11:20.540] 42::getApplicableRefactors: elapsed time (in milliseconds) 0.5404
Info 733  [11:11:20.540] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":42,"success":true,"body":[]}
Info 734  [11:11:20.730] request:
    {"seq":43,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","startLine":370,"startOffset":66,"endLine":370,"endOffset":66}}
Perf 735  [11:11:20.731] 43::getApplicableRefactors: elapsed time (in milliseconds) 1.3567
Info 736  [11:11:20.731] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":43,"success":true,"body":[]}
Info 737  [11:11:20.849] request:
    {"seq":44,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"]}}
Perf 738  [11:11:20.849] 44::geterr: async elapsed time (in milliseconds) 0.3095
Info 739  [11:11:20.857] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 740  [11:11:20.858] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 741  [11:11:20.858] [typescript-tslint-plugin] "(runTsLint) start"
Info 742  [11:11:20.858] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 743  [11:11:20.858] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 744  [11:11:20.858] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 745  [11:11:20.858] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 746  [11:11:20.858] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 747  [11:11:20.858] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 748  [11:11:20.858] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 749  [11:11:20.858] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 750  [11:11:20.967] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 751  [11:11:20.975] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 752  [11:11:20.982] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":57,"offset":8},"end":{"line":57,"offset":14},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":101},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":74},"end":{"line":519,"offset":79},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"'diffToTop' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"'diffToBottom' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"'clearWrap' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"'collectAndFlag' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 753  [11:11:20.984] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 754  [11:11:20.984] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 755  [11:11:20.984] [typescript-tslint-plugin] "(runTsLint) start"
Info 756  [11:11:20.984] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 757  [11:11:20.984] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 758  [11:11:20.984] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 759  [11:11:20.984] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 760  [11:11:20.984] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 761  [11:11:20.984] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 762  [11:11:20.984] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 763  [11:11:20.984] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 764  [11:11:20.990] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 765  [11:11:20.991] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 766  [11:11:20.991] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 767  [11:11:20.992] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 768  [11:11:20.993] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts'"
Info 769  [11:11:20.993] [typescript-tslint-plugin] "(runTsLint) start"
Info 770  [11:11:20.993] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 771  [11:11:20.993] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 772  [11:11:20.993] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 773  [11:11:20.993] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 774  [11:11:20.993] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 775  [11:11:20.993] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 776  [11:11:20.994] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 777  [11:11:20.994] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 778  [11:11:21.45] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 779  [11:11:21.45] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[{"start":{"line":1126,"offset":31},"end":{"line":1126,"offset":44},"text":"Property 'addEscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1131,"offset":31},"end":{"line":1131,"offset":44},"text":"Property 'addDcsHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1136,"offset":31},"end":{"line":1136,"offset":44},"text":"Property 'addCsiHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1140,"offset":31},"end":{"line":1140,"offset":44},"text":"Property 'addOscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"}]}}
Info 780  [11:11:21.45] request:
    {"seq":45,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":1,"startOffset":1,"endLine":1,"endOffset":1}}
Perf 781  [11:11:21.46] 45::getApplicableRefactors: elapsed time (in milliseconds) 0.3026
Info 782  [11:11:21.46] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":45,"success":true,"body":[]}
Info 783  [11:11:21.46] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":44}}
Info 784  [11:11:21.183] request:
    {"seq":46,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":938,"startOffset":18,"endLine":938,"endOffset":18}}
Perf 785  [11:11:21.185] 46::getApplicableRefactors: elapsed time (in milliseconds) 1.6801
Info 786  [11:11:21.185] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":46,"success":true,"body":[]}
Info 787  [11:11:21.315] request:
    {"seq":47,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"]}}
Perf 788  [11:11:21.315] 47::geterr: async elapsed time (in milliseconds) 0.4106
Info 789  [11:11:21.317] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 790  [11:11:21.317] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts'"
Info 791  [11:11:21.317] [typescript-tslint-plugin] "(runTsLint) start"
Info 792  [11:11:21.317] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 793  [11:11:21.317] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 794  [11:11:21.317] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 795  [11:11:21.317] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 796  [11:11:21.317] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 797  [11:11:21.317] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 798  [11:11:21.317] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 799  [11:11:21.317] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 800  [11:11:21.370] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 801  [11:11:21.370] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[{"start":{"line":1126,"offset":31},"end":{"line":1126,"offset":44},"text":"Property 'addEscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1131,"offset":31},"end":{"line":1131,"offset":44},"text":"Property 'addDcsHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1136,"offset":31},"end":{"line":1136,"offset":44},"text":"Property 'addCsiHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1140,"offset":31},"end":{"line":1140,"offset":44},"text":"Property 'addOscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"}]}}
Info 802  [11:11:21.373] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 803  [11:11:21.374] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 804  [11:11:21.374] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 805  [11:11:21.374] [typescript-tslint-plugin] "(runTsLint) start"
Info 806  [11:11:21.374] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 807  [11:11:21.374] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 808  [11:11:21.374] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 809  [11:11:21.374] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 810  [11:11:21.374] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 811  [11:11:21.374] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 812  [11:11:21.374] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 813  [11:11:21.374] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 814  [11:11:21.377] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 815  [11:11:21.377] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 816  [11:11:21.378] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 817  [11:11:21.383] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 818  [11:11:21.383] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 819  [11:11:21.383] [typescript-tslint-plugin] "(runTsLint) start"
Info 820  [11:11:21.383] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 821  [11:11:21.383] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 822  [11:11:21.383] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 823  [11:11:21.383] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 824  [11:11:21.383] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 825  [11:11:21.383] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 826  [11:11:21.384] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 827  [11:11:21.384] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 828  [11:11:21.466] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 829  [11:11:21.473] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 830  [11:11:21.479] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":57,"offset":8},"end":{"line":57,"offset":14},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":101},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":74},"end":{"line":519,"offset":79},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"'diffToTop' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"'diffToBottom' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"'clearWrap' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"'collectAndFlag' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 831  [11:11:21.479] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":47}}
Info 832  [11:11:42.726] request:
    {"seq":48,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":1,"startOffset":1,"endLine":1,"endOffset":1}}
Perf 833  [11:11:42.726] 48::getApplicableRefactors: elapsed time (in milliseconds) 0.7999
Info 834  [11:11:42.727] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":48,"success":true,"body":[]}
Info 835  [11:11:42.927] request:
    {"seq":49,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":938,"startOffset":18,"endLine":938,"endOffset":18}}
Perf 836  [11:11:42.928] 49::getApplicableRefactors: elapsed time (in milliseconds) 1.4878
Info 837  [11:11:42.928] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":49,"success":true,"body":[]}
Info 838  [11:11:43.27] request:
    {"seq":50,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"]}}
Perf 839  [11:11:43.27] 50::geterr: async elapsed time (in milliseconds) 0.3855
Info 840  [11:11:43.29] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 841  [11:11:43.29] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts'"
Info 842  [11:11:43.29] [typescript-tslint-plugin] "(runTsLint) start"
Info 843  [11:11:43.29] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 844  [11:11:43.29] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 845  [11:11:43.29] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 846  [11:11:43.29] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 847  [11:11:43.29] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 848  [11:11:43.29] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 849  [11:11:43.30] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 850  [11:11:43.30] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 851  [11:11:43.86] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 852  [11:11:43.87] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[{"start":{"line":1126,"offset":31},"end":{"line":1126,"offset":44},"text":"Property 'addEscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1131,"offset":31},"end":{"line":1131,"offset":44},"text":"Property 'addDcsHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1136,"offset":31},"end":{"line":1136,"offset":44},"text":"Property 'addCsiHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1140,"offset":31},"end":{"line":1140,"offset":44},"text":"Property 'addOscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"}]}}
Info 853  [11:11:43.93] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 854  [11:11:43.94] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 855  [11:11:43.94] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 856  [11:11:43.94] [typescript-tslint-plugin] "(runTsLint) start"
Info 857  [11:11:43.94] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 858  [11:11:43.94] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 859  [11:11:43.94] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 860  [11:11:43.95] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 861  [11:11:43.95] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 862  [11:11:43.95] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 863  [11:11:43.95] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 864  [11:11:43.95] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 865  [11:11:43.98] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 866  [11:11:43.99] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 867  [11:11:43.99] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 868  [11:11:43.104] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 869  [11:11:43.104] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 870  [11:11:43.104] [typescript-tslint-plugin] "(runTsLint) start"
Info 871  [11:11:43.104] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 872  [11:11:43.104] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 873  [11:11:43.104] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 874  [11:11:43.104] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 875  [11:11:43.104] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 876  [11:11:43.104] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 877  [11:11:43.105] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 878  [11:11:43.105] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 879  [11:11:43.204] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 880  [11:11:43.214] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 881  [11:11:43.220] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":57,"offset":8},"end":{"line":57,"offset":14},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":101},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":74},"end":{"line":519,"offset":79},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"'diffToTop' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"'diffToBottom' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"'clearWrap' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"'collectAndFlag' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 882  [11:11:43.220] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":50}}
Info 883  [11:11:56.399] request:
    {"seq":51,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":956,"startOffset":6,"endLine":956,"endOffset":6}}
Perf 884  [11:11:56.400] 51::getApplicableRefactors: elapsed time (in milliseconds) 1.3110
Info 885  [11:11:56.400] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":51,"success":true,"body":[]}
Info 886  [11:11:59.974] request:
    {"seq":52,"type":"request","command":"definitionAndBoundSpan","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","line":950,"offset":64}}
Perf 887  [11:11:59.976] 52::definitionAndBoundSpan: elapsed time (in milliseconds) 1.0819
Info 888  [11:11:59.976] response:
    {"seq":0,"type":"response","command":"definitionAndBoundSpan","request_seq":52,"success":true,"body":{"definitions":[]}}
Info 889  [11:12:10.51] request:
    {"seq":53,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":1,"startOffset":1,"endLine":1,"endOffset":1}}
Perf 890  [11:12:10.52] 53::getApplicableRefactors: elapsed time (in milliseconds) 0.4241
Info 891  [11:12:10.52] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":53,"success":true,"body":[]}
Info 892  [11:12:10.241] request:
    {"seq":54,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":938,"startOffset":18,"endLine":938,"endOffset":18}}
Perf 893  [11:12:10.242] 54::getApplicableRefactors: elapsed time (in milliseconds) 0.6051
Info 894  [11:12:10.242] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":54,"success":true,"body":[]}
Info 895  [11:12:10.353] request:
    {"seq":55,"type":"request","command":"geterr","arguments":{"delay":0,"files":["/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"]}}
Perf 896  [11:12:10.354] 55::geterr: async elapsed time (in milliseconds) 0.5355
Info 897  [11:12:10.356] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 898  [11:12:10.356] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts'"
Info 899  [11:12:10.356] [typescript-tslint-plugin] "(runTsLint) start"
Info 900  [11:12:10.356] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 901  [11:12:10.356] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 902  [11:12:10.356] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 903  [11:12:10.356] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 904  [11:12:10.356] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 905  [11:12:10.356] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts"
Info 906  [11:12:10.358] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 907  [11:12:10.358] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 908  [11:12:10.421] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 909  [11:12:10.421] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[{"start":{"line":1126,"offset":31},"end":{"line":1126,"offset":44},"text":"Property 'addEscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1131,"offset":31},"end":{"line":1131,"offset":44},"text":"Property 'addDcsHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1136,"offset":31},"end":{"line":1136,"offset":44},"text":"Property 'addCsiHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":1140,"offset":31},"end":{"line":1140,"offset":44},"text":"Property 'addOscHandler' does not exist on type 'InputHandler'.","code":2339,"category":"error"}]}}
Info 910  [11:12:10.424] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","diagnostics":[]}}
Info 911  [11:12:10.425] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 912  [11:12:10.426] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts'"
Info 913  [11:12:10.426] [typescript-tslint-plugin] "(runTsLint) start"
Info 914  [11:12:10.426] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 915  [11:12:10.426] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 916  [11:12:10.426] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 917  [11:12:10.426] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src/common"
Info 918  [11:12:10.426] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 919  [11:12:10.426] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts"
Info 920  [11:12:10.426] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 921  [11:12:10.426] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 922  [11:12:10.428] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 923  [11:12:10.428] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 924  [11:12:10.428] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/common/services/DirtyRowService.ts","diagnostics":[]}}
Info 925  [11:12:10.433] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":377,"offset":12},"end":{"line":377,"offset":13},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":27},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":377,"offset":28},"end":{"line":377,"offset":29},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":92},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":380,"offset":3},"end":{"line":380,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":3},"end":{"line":382,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":382,"offset":20},"end":{"line":382,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":40},"end":{"line":382,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":53},"end":{"line":382,"offset":54},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":63},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":9},"end":{"line":383,"offset":13},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":383,"offset":21},"end":{"line":383,"offset":22},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":9},"end":{"line":384,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":384,"offset":24},"end":{"line":384,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":385,"offset":46},"end":{"line":385,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":386,"offset":43},"end":{"line":386,"offset":44},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":387,"offset":75},"end":{"line":387,"offset":76},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":388,"offset":42},"end":{"line":388,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":389,"offset":57},"end":{"line":389,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":390,"offset":49},"end":{"line":390,"offset":50},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":391,"offset":47},"end":{"line":391,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":392,"offset":62},"end":{"line":392,"offset":63},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":9},"end":{"line":394,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":394,"offset":46},"end":{"line":394,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":25},"end":{"line":395,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":31},"end":{"line":395,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":36},"end":{"line":395,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":38},"end":{"line":395,"offset":40},"text":"Parameter declaration expected.","code":1138,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":507,"offset":3},"end":{"line":507,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":3},"end":{"line":512,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":512,"offset":26},"end":{"line":512,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":57},"end":{"line":512,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":89},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":512,"offset":102},"end":{"line":512,"offset":103},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":3},"end":{"line":519,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":519,"offset":26},"end":{"line":519,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":57},"end":{"line":519,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":102},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":519,"offset":115},"end":{"line":519,"offset":116},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":3},"end":{"line":526,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":526,"offset":26},"end":{"line":526,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":57},"end":{"line":526,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":74},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":526,"offset":87},"end":{"line":526,"offset":88},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":3},"end":{"line":533,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":533,"offset":29},"end":{"line":533,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":47},"end":{"line":533,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":76},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":533,"offset":89},"end":{"line":533,"offset":90},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":541,"offset":3},"end":{"line":541,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":17},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":9},"end":{"line":542,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":542,"offset":26},"end":{"line":542,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":549,"offset":3},"end":{"line":549,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":551,"offset":46},"end":{"line":551,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":48},"end":{"line":553,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":553,"offset":50},"end":{"line":553,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":569,"offset":3},"end":{"line":569,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":3},"end":{"line":575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":9},"end":{"line":576,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":576,"offset":37},"end":{"line":576,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":583,"offset":3},"end":{"line":583,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":22},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":9},"end":{"line":584,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":584,"offset":27},"end":{"line":584,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":41},"end":{"line":585,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":585,"offset":43},"end":{"line":585,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":588,"offset":3},"end":{"line":588,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":3},"end":{"line":594,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":16},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":65},"end":{"line":595,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":595,"offset":67},"end":{"line":595,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":603,"offset":3},"end":{"line":603,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":3},"end":{"line":610,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":9},"end":{"line":611,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":611,"offset":32},"end":{"line":611,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":619,"offset":3},"end":{"line":619,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":9},"end":{"line":620,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":620,"offset":32},"end":{"line":620,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":626,"offset":3},"end":{"line":626,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":29},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":9},"end":{"line":627,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":627,"offset":117},"end":{"line":627,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":628,"offset":9},"end":{"line":628,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":630,"offset":90},"end":{"line":630,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":3},"end":{"line":636,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":636,"offset":23},"end":{"line":636,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":34},"end":{"line":636,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":34},"end":{"line":637,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":637,"offset":36},"end":{"line":637,"offset":37},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":640,"offset":7},"end":{"line":640,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":645,"offset":3},"end":{"line":645,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":3},"end":{"line":650,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":650,"offset":24},"end":{"line":650,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":35},"end":{"line":650,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":9},"end":{"line":653,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":653,"offset":27},"end":{"line":653,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":9},"end":{"line":654,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":654,"offset":88},"end":{"line":654,"offset":89},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":3},"end":{"line":661,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":661,"offset":25},"end":{"line":661,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":663,"offset":90},"end":{"line":663,"offset":91},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":19},"end":{"line":664,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":24},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":666,"offset":7},"end":{"line":666,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":669,"offset":3},"end":{"line":669,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":3},"end":{"line":675,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":675,"offset":27},"end":{"line":675,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":677,"offset":96},"end":{"line":677,"offset":97},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":22},"end":{"line":678,"offset":23},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":27},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":680,"offset":7},"end":{"line":680,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":683,"offset":3},"end":{"line":683,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":3},"end":{"line":689,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":689,"offset":30},"end":{"line":689,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":9},"end":{"line":690,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":690,"offset":47},"end":{"line":690,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":3},"end":{"line":697,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":697,"offset":31},"end":{"line":697,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":9},"end":{"line":698,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":698,"offset":50},"end":{"line":698,"offset":51},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":3},"end":{"line":706,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":706,"offset":31},"end":{"line":706,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":9},"end":{"line":707,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":707,"offset":28},"end":{"line":707,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":9},"end":{"line":708,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":708,"offset":37},"end":{"line":708,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":3},"end":{"line":716,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":716,"offset":36},"end":{"line":716,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":9},"end":{"line":717,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":717,"offset":26},"end":{"line":717,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":9},"end":{"line":718,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":718,"offset":37},"end":{"line":718,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":3},"end":{"line":725,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":725,"offset":35},"end":{"line":725,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":46},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":9},"end":{"line":726,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":726,"offset":79},"end":{"line":726,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":3},"end":{"line":733,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":733,"offset":31},"end":{"line":733,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":734,"offset":9},"end":{"line":734,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":738,"offset":35},"end":{"line":738,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":3},"end":{"line":746,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":746,"offset":32},"end":{"line":746,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":9},"end":{"line":747,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":747,"offset":79},"end":{"line":747,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":3},"end":{"line":755,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":755,"offset":34},"end":{"line":755,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":9},"end":{"line":756,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":756,"offset":47},"end":{"line":756,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":3},"end":{"line":763,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":763,"offset":32},"end":{"line":763,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":9},"end":{"line":764,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":764,"offset":79},"end":{"line":764,"offset":80},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":3},"end":{"line":772,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":772,"offset":34},"end":{"line":772,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":9},"end":{"line":773,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":773,"offset":47},"end":{"line":773,"offset":48},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":3},"end":{"line":782,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":782,"offset":27},"end":{"line":782,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":9},"end":{"line":783,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":783,"offset":32},"end":{"line":783,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":3},"end":{"line":794,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":794,"offset":25},"end":{"line":794,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":795,"offset":35},"end":{"line":795,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":15},"end":{"line":796,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":798,"offset":7},"end":{"line":798,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":801,"offset":3},"end":{"line":801,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":3},"end":{"line":807,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":807,"offset":33},"end":{"line":807,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":65},"end":{"line":808,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":808,"offset":67},"end":{"line":808,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":815,"offset":3},"end":{"line":815,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":3},"end":{"line":820,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":820,"offset":34},"end":{"line":820,"offset":35},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":45},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":65},"end":{"line":821,"offset":66},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":821,"offset":67},"end":{"line":821,"offset":68},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":832,"offset":3},"end":{"line":832,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":3},"end":{"line":842,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":842,"offset":31},"end":{"line":842,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":46},"end":{"line":842,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":59},"end":{"line":842,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":78},"end":{"line":842,"offset":79},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":97},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":843,"offset":92},"end":{"line":843,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":844,"offset":9},"end":{"line":844,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":848,"offset":6},"end":{"line":848,"offset":7},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":3},"end":{"line":859,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":859,"offset":29},"end":{"line":859,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":860,"offset":92},"end":{"line":860,"offset":93},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":9},"end":{"line":861,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":861,"offset":86},"end":{"line":861,"offset":87},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":862,"offset":27},"end":{"line":862,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":3},"end":{"line":877,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":877,"offset":31},"end":{"line":877,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":9},"end":{"line":878,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":878,"offset":27},"end":{"line":878,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":879,"offset":10},"end":{"line":879,"offset":11},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":29},"end":{"line":880,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":880,"offset":31},"end":{"line":880,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":881,"offset":7},"end":{"line":881,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":890,"offset":7},"end":{"line":890,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":904,"offset":7},"end":{"line":904,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":912,"offset":7},"end":{"line":912,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":924,"offset":3},"end":{"line":924,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":3},"end":{"line":937,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":937,"offset":28},"end":{"line":937,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":9},"end":{"line":938,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":938,"offset":27},"end":{"line":938,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":29},"end":{"line":939,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":939,"offset":31},"end":{"line":939,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":940,"offset":7},"end":{"line":940,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":943,"offset":7},"end":{"line":943,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":946,"offset":7},"end":{"line":946,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":951,"offset":3},"end":{"line":951,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":3},"end":{"line":957,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":957,"offset":28},"end":{"line":957,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":9},"end":{"line":958,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":958,"offset":27},"end":{"line":958,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":9},"end":{"line":959,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":959,"offset":38},"end":{"line":959,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":962,"offset":46},"end":{"line":962,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":70},"end":{"line":964,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":964,"offset":72},"end":{"line":964,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":981,"offset":3},"end":{"line":981,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":3},"end":{"line":987,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":987,"offset":28},"end":{"line":987,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":9},"end":{"line":988,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":988,"offset":27},"end":{"line":988,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":9},"end":{"line":989,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":989,"offset":38},"end":{"line":989,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":992,"offset":46},"end":{"line":992,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":70},"end":{"line":994,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":994,"offset":72},"end":{"line":994,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1012,"offset":3},"end":{"line":1012,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":3},"end":{"line":1018,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1018,"offset":28},"end":{"line":1018,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":9},"end":{"line":1019,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1019,"offset":27},"end":{"line":1019,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1020,"offset":119},"end":{"line":1020,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":3},"end":{"line":1035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1035,"offset":28},"end":{"line":1035,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":9},"end":{"line":1036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1036,"offset":27},"end":{"line":1036,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1037,"offset":119},"end":{"line":1037,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":3},"end":{"line":1051,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1051,"offset":25},"end":{"line":1051,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":36},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":9},"end":{"line":1052,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1052,"offset":38},"end":{"line":1052,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1055,"offset":46},"end":{"line":1055,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1062,"offset":3},"end":{"line":1062,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":3},"end":{"line":1067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1067,"offset":27},"end":{"line":1067,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":9},"end":{"line":1068,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1068,"offset":38},"end":{"line":1068,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1071,"offset":46},"end":{"line":1071,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":19},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":20},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1078,"offset":3},"end":{"line":1078,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":3},"end":{"line":1094,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1094,"offset":27},"end":{"line":1094,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1095,"offset":46},"end":{"line":1095,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":70},"end":{"line":1096,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1096,"offset":72},"end":{"line":1096,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1106,"offset":3},"end":{"line":1106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":3},"end":{"line":1122,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1122,"offset":28},"end":{"line":1122,"offset":29},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1123,"offset":46},"end":{"line":1123,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":70},"end":{"line":1124,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1124,"offset":72},"end":{"line":1124,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1134,"offset":3},"end":{"line":1134,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":3},"end":{"line":1140,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1140,"offset":30},"end":{"line":1140,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1141,"offset":46},"end":{"line":1141,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":70},"end":{"line":1142,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1142,"offset":72},"end":{"line":1142,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1152,"offset":3},"end":{"line":1152,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":3},"end":{"line":1158,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1158,"offset":30},"end":{"line":1158,"offset":31},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":41},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1159,"offset":46},"end":{"line":1159,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":70},"end":{"line":1160,"offset":71},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1160,"offset":72},"end":{"line":1160,"offset":73},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1170,"offset":3},"end":{"line":1170,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":3},"end":{"line":1176,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1176,"offset":27},"end":{"line":1176,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":38},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":9},"end":{"line":1177,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1177,"offset":27},"end":{"line":1177,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1178,"offset":119},"end":{"line":1178,"offset":120},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":3},"end":{"line":1211,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1211,"offset":41},"end":{"line":1211,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":52},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":10},"text":"Identifier expected.","code":1003,"category":"error"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":41},"end":{"line":1212,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1212,"offset":43},"end":{"line":1212,"offset":44},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1222,"offset":3},"end":{"line":1222,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":3},"end":{"line":1261,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1261,"offset":44},"end":{"line":1261,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":55},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":29},"end":{"line":1262,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1262,"offset":31},"end":{"line":1262,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1270,"offset":3},"end":{"line":1270,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":3},"end":{"line":1271,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1271,"offset":46},"end":{"line":1271,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":57},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":29},"end":{"line":1272,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1272,"offset":31},"end":{"line":1272,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1289,"offset":3},"end":{"line":1289,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":3},"end":{"line":1377,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1377,"offset":24},"end":{"line":1377,"offset":25},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":19},"end":{"line":1378,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":23},"end":{"line":1378,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":38},"end":{"line":1378,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":41},"end":{"line":1378,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1388,"offset":3},"end":{"line":1388,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":3},"end":{"line":1389,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1389,"offset":31},"end":{"line":1389,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":19},"end":{"line":1390,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":23},"end":{"line":1390,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":38},"end":{"line":1390,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":41},"end":{"line":1390,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1478,"offset":3},"end":{"line":1478,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":3},"end":{"line":1563,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1563,"offset":26},"end":{"line":1563,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":19},"end":{"line":1564,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":23},"end":{"line":1564,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":38},"end":{"line":1564,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":41},"end":{"line":1564,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1574,"offset":3},"end":{"line":1574,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":3},"end":{"line":1575,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1575,"offset":33},"end":{"line":1575,"offset":34},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":19},"end":{"line":1576,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":23},"end":{"line":1576,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":38},"end":{"line":1576,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":41},"end":{"line":1576,"offset":43},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":44},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1652,"offset":3},"end":{"line":1652,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":3},"end":{"line":1658,"offset":10},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1658,"offset":31},"end":{"line":1658,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":45},"end":{"line":1658,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":59},"end":{"line":1658,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":77},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1658,"offset":85},"end":{"line":1658,"offset":86},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":3},"end":{"line":1791,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1791,"offset":31},"end":{"line":1791,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":54},"end":{"line":1793,"offset":55},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1793,"offset":56},"end":{"line":1793,"offset":57},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1887,"offset":3},"end":{"line":1887,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":3},"end":{"line":1912,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1912,"offset":29},"end":{"line":1912,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":40},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":29},"end":{"line":1913,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1913,"offset":31},"end":{"line":1913,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1914,"offset":7},"end":{"line":1914,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1918,"offset":7},"end":{"line":1918,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1925,"offset":3},"end":{"line":1925,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":3},"end":{"line":1927,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1927,"offset":36},"end":{"line":1927,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":47},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":29},"end":{"line":1930,"offset":30},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1930,"offset":31},"end":{"line":1930,"offset":32},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1931,"offset":7},"end":{"line":1931,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":14},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1937,"offset":7},"end":{"line":1937,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1941,"offset":7},"end":{"line":1941,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1945,"offset":7},"end":{"line":1945,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1949,"offset":7},"end":{"line":1949,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":15},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1954,"offset":3},"end":{"line":1954,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":3},"end":{"line":1960,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1960,"offset":26},"end":{"line":1960,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":37},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":9},"end":{"line":1961,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1961,"offset":40},"end":{"line":1961,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":9},"end":{"line":1962,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1962,"offset":38},"end":{"line":1962,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":9},"end":{"line":1963,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1963,"offset":38},"end":{"line":1963,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":9},"end":{"line":1964,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1964,"offset":41},"end":{"line":1964,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":9},"end":{"line":1965,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1965,"offset":45},"end":{"line":1965,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":32},"end":{"line":1966,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1966,"offset":34},"end":{"line":1966,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":1977,"offset":3},"end":{"line":1977,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":3},"end":{"line":1989,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1989,"offset":31},"end":{"line":1989,"offset":32},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":11},"end":{"line":1990,"offset":16},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1990,"offset":40},"end":{"line":1990,"offset":41},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":7},"end":{"line":1992,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":1992,"offset":12},"end":{"line":1992,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1992,"offset":13},"end":{"line":1992,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":12},"end":{"line":1993,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1993,"offset":13},"end":{"line":1993,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":13},"end":{"line":1994,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1994,"offset":59},"end":{"line":1994,"offset":60},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1995,"offset":14},"end":{"line":1995,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":12},"end":{"line":1996,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1996,"offset":13},"end":{"line":1996,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":12},"end":{"line":1997,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1997,"offset":13},"end":{"line":1997,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":13},"end":{"line":1998,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":1998,"offset":63},"end":{"line":1998,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":1999,"offset":14},"end":{"line":1999,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":12},"end":{"line":2000,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2000,"offset":13},"end":{"line":2000,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":12},"end":{"line":2001,"offset":13},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2001,"offset":13},"end":{"line":2001,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":13},"end":{"line":2002,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2002,"offset":57},"end":{"line":2002,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2003,"offset":14},"end":{"line":2003,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2007,"offset":3},"end":{"line":2007,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":3},"end":{"line":2014,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2014,"offset":32},"end":{"line":2014,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":43},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":11},"end":{"line":2015,"offset":14},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2015,"offset":38},"end":{"line":2015,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":9},"end":{"line":2016,"offset":15},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2016,"offset":23},"end":{"line":2016,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":101},"end":{"line":2018,"offset":102},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2018,"offset":103},"end":{"line":2018,"offset":104},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2027,"offset":3},"end":{"line":2027,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":3},"end":{"line":2035,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":39},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":9},"end":{"line":2036,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2036,"offset":69},"end":{"line":2036,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":9},"end":{"line":2037,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2037,"offset":104},"end":{"line":2037,"offset":105},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":9},"end":{"line":2038,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2038,"offset":83},"end":{"line":2038,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":9},"end":{"line":2039,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2039,"offset":83},"end":{"line":2039,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":9},"end":{"line":2040,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2040,"offset":69},"end":{"line":2040,"offset":70},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2049,"offset":3},"end":{"line":2049,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"Expression expected.","code":1109,"category":"error"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":42},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":9},"end":{"line":2050,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2050,"offset":74},"end":{"line":2050,"offset":75},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":9},"end":{"line":2051,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2051,"offset":117},"end":{"line":2051,"offset":118},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":9},"end":{"line":2052,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2052,"offset":83},"end":{"line":2052,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":9},"end":{"line":2053,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2053,"offset":83},"end":{"line":2053,"offset":84},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":9},"end":{"line":2054,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2054,"offset":57},"end":{"line":2054,"offset":58},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":48},"end":{"line":2055,"offset":49},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2055,"offset":50},"end":{"line":2055,"offset":51},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2059,"offset":3},"end":{"line":2059,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":3},"end":{"line":2067,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2067,"offset":23},"end":{"line":2067,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":9},"end":{"line":2068,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2068,"offset":37},"end":{"line":2068,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2077,"offset":3},"end":{"line":2077,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":21},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":9},"end":{"line":2078,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2078,"offset":37},"end":{"line":2078,"offset":38},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":9},"end":{"line":2079,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2079,"offset":17},"end":{"line":2079,"offset":18},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2087,"offset":3},"end":{"line":2087,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":34},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":9},"end":{"line":2088,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2088,"offset":72},"end":{"line":2088,"offset":73},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":9},"end":{"line":2089,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2089,"offset":44},"end":{"line":2089,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":32},"end":{"line":2090,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2090,"offset":34},"end":{"line":2090,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2093,"offset":3},"end":{"line":2093,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":3},"end":{"line":2100,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":30},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":9},"end":{"line":2101,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2101,"offset":63},"end":{"line":2101,"offset":64},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":9},"end":{"line":2102,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2102,"offset":45},"end":{"line":2102,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":32},"end":{"line":2103,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2103,"offset":34},"end":{"line":2103,"offset":35},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2106,"offset":3},"end":{"line":2106,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":3},"end":{"line":2114,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":33},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":9},"end":{"line":2115,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2115,"offset":32},"end":{"line":2115,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":9},"end":{"line":2116,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2116,"offset":51},"end":{"line":2116,"offset":52},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":3},"end":{"line":2135,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2135,"offset":38},"end":{"line":2135,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":48},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":36},"end":{"line":2136,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2136,"offset":38},"end":{"line":2136,"offset":39},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2145,"offset":3},"end":{"line":2145,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":3},"end":{"line":2153,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":9},"end":{"line":2154,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2154,"offset":27},"end":{"line":2154,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2155,"offset":46},"end":{"line":2155,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":9},"end":{"line":2156,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2156,"offset":35},"end":{"line":2156,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":45},"end":{"line":2157,"offset":46},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2157,"offset":47},"end":{"line":2157,"offset":48},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2160,"offset":7},"end":{"line":2160,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2164,"offset":3},"end":{"line":2164,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":3},"end":{"line":2173,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":19},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":9},"end":{"line":2174,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2174,"offset":73},"end":{"line":2174,"offset":74},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2184,"offset":3},"end":{"line":2184,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":25},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":9},"end":{"line":2185,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2185,"offset":27},"end":{"line":2185,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2186,"offset":46},"end":{"line":2186,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":38},"end":{"line":2187,"offset":39},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2187,"offset":40},"end":{"line":2187,"offset":41},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2195,"offset":7},"end":{"line":2195,"offset":11},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2199,"offset":3},"end":{"line":2199,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":3},"end":{"line":2206,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":18},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":9},"end":{"line":2207,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2207,"offset":25},"end":{"line":2207,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":9},"end":{"line":2208,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2208,"offset":27},"end":{"line":2208,"offset":28},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":3},"end":{"line":2221,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2221,"offset":25},"end":{"line":2221,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":9},"end":{"line":2222,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2222,"offset":36},"end":{"line":2222,"offset":37},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2233,"offset":3},"end":{"line":2233,"offset":9},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":35},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2235,"offset":32},"end":{"line":2235,"offset":33},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":9},"end":{"line":2236,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2236,"offset":64},"end":{"line":2236,"offset":65},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2237,"offset":44},"end":{"line":2237,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":10},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2238,"offset":44},"end":{"line":2238,"offset":45},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2240,"offset":46},"end":{"line":2240,"offset":47},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":9},"end":{"line":2242,"offset":10},"text":"':' expected.","code":1005,"category":"error"},{"start":{"line":2242,"offset":26},"end":{"line":2242,"offset":27},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":25},"end":{"line":2243,"offset":26},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":35},"end":{"line":2243,"offset":36},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":61},"end":{"line":2243,"offset":62},"text":"',' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":63},"end":{"line":2243,"offset":65},"text":"Property assignment expected.","code":1136,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":73},"text":"';' expected.","code":1005,"category":"error"},{"start":{"line":2250,"offset":3},"end":{"line":2250,"offset":4},"text":"Declaration or statement expected.","code":1128,"category":"error"},{"start":{"line":2251,"offset":1},"end":{"line":2251,"offset":2},"text":"Declaration or statement expected.","code":1128,"category":"error"}]}}
Info 926  [11:12:10.434] [typescript-tslint-plugin] "Computing tslint semantic diagnostics for '/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts'"
Info 927  [11:12:10.434] [typescript-tslint-plugin] "(runTsLint) start"
Info 928  [11:12:10.434] [typescript-tslint-plugin] "(runTsLint) Loaded tslint library"
Info 929  [11:12:10.434] [typescript-tslint-plugin] "(runTsLint) About to validate /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 930  [11:12:10.434] [typescript-tslint-plugin] "(doRun) starting validation for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 931  [11:12:10.434] [typescript-tslint-plugin] "(doRun) Changed directory to /home/daimms/dev/Tyriar/xterm.js/src"
Info 932  [11:12:10.434] [typescript-tslint-plugin] "(doRun) About to getConfiguration"
Info 933  [11:12:10.434] [typescript-tslint-plugin] "(getConfiguration) Starting for /home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"
Info 934  [11:12:10.435] [typescript-tslint-plugin] "(doRun) Configuration fetched"
Info 935  [11:12:10.435] [typescript-tslint-plugin] "(doRun) Linting: start linting"
Info 936  [11:12:10.516] [typescript-tslint-plugin] "(doRun) Linting: ended linting"
Info 937  [11:12:10.524] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":386,"offset":5},"end":{"line":386,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":387,"offset":5},"end":{"line":387,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":388,"offset":5},"end":{"line":388,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":389,"offset":5},"end":{"line":389,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":390,"offset":5},"end":{"line":390,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":391,"offset":5},"end":{"line":391,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Duplicate identifier 'pos'.","code":2300,"category":"error"},{"start":{"line":628,"offset":5},"end":{"line":628,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":654,"offset":5},"end":{"line":654,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":708,"offset":5},"end":{"line":708,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":718,"offset":5},"end":{"line":718,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":824,"offset":9},"end":{"line":824,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":862,"offset":9},"end":{"line":862,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":968,"offset":11},"end":{"line":968,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":998,"offset":11},"end":{"line":998,"offset":14},"text":"Cannot redeclare block-scoped variable 'row'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1099,"offset":11},"end":{"line":1099,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1127,"offset":11},"end":{"line":1127,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1145,"offset":11},"end":{"line":1145,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1163,"offset":11},"end":{"line":1163,"offset":16},"text":"Cannot redeclare block-scoped variable 'param'.","code":2451,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Duplicate identifier 'i'.","code":2300,"category":"error"},{"start":{"line":1962,"offset":5},"end":{"line":1962,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1963,"offset":5},"end":{"line":1963,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1964,"offset":5},"end":{"line":1964,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1965,"offset":5},"end":{"line":1965,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1993,"offset":7},"end":{"line":1993,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1996,"offset":7},"end":{"line":1996,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1997,"offset":7},"end":{"line":1997,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1998,"offset":9},"end":{"line":1998,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":1999,"offset":9},"end":{"line":1999,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2000,"offset":7},"end":{"line":2000,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2001,"offset":7},"end":{"line":2001,"offset":11},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2002,"offset":9},"end":{"line":2002,"offset":13},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2003,"offset":9},"end":{"line":2003,"offset":14},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2037,"offset":5},"end":{"line":2037,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2038,"offset":5},"end":{"line":2038,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2039,"offset":5},"end":{"line":2039,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2040,"offset":5},"end":{"line":2040,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2051,"offset":5},"end":{"line":2051,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2052,"offset":5},"end":{"line":2052,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2053,"offset":5},"end":{"line":2053,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2054,"offset":5},"end":{"line":2054,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2079,"offset":5},"end":{"line":2079,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2089,"offset":5},"end":{"line":2089,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2102,"offset":5},"end":{"line":2102,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2116,"offset":5},"end":{"line":2116,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2156,"offset":5},"end":{"line":2156,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2208,"offset":5},"end":{"line":2208,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2237,"offset":9},"end":{"line":2237,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2238,"offset":9},"end":{"line":2238,"offset":9},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2240,"offset":5},"end":{"line":2240,"offset":10},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":41},"text":"An object literal cannot have multiple properties with the same name in strict mode.","code":1117,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Duplicate identifier 'yOffset'.","code":2300,"category":"error"},{"start":{"line":17,"offset":70},"end":{"line":17,"offset":89},"text":"'IFunctionIdentifier' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":21,"offset":1},"end":{"line":21,"offset":60},"text":"All imports in import declaration are unused.","code":6192,"category":"error","reportsUnnecessary":true},{"start":{"line":24,"offset":1},"end":{"line":24,"offset":54},"text":"'DcsHandler' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":125,"offset":14},"end":{"line":125,"offset":26},"text":"Class 'InputHandler' incorrectly implements interface 'IInputHandler'.\n  Type 'InputHandler' is missing the following properties from type 'IInputHandler': print, bell, lineFeed, carriageReturn, and 57 more.","code":2420,"category":"error"},{"start":{"line":129,"offset":11},"end":{"line":129,"offset":20},"text":"'_workCell' is declared but its value is never read.","code":6133,"category":"error","reportsUnnecessary":true},{"start":{"line":145,"offset":22},"end":{"line":145,"offset":39},"text":"Property '_coreMouseService' is declared but its value is never read.","code":6138,"category":"error","reportsUnnecessary":true},{"start":{"line":177,"offset":61},"end":{"line":177,"offset":66},"text":"Property 'print' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":182,"offset":61},"end":{"line":182,"offset":72},"text":"Property 'insertChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":183,"offset":81},"end":{"line":183,"offset":91},"text":"Property 'scrollLeft' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":184,"offset":61},"end":{"line":184,"offset":69},"text":"Property 'cursorUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":185,"offset":81},"end":{"line":185,"offset":92},"text":"Property 'scrollRight' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":186,"offset":61},"end":{"line":186,"offset":71},"text":"Property 'cursorDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":187,"offset":61},"end":{"line":187,"offset":74},"text":"Property 'cursorForward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":188,"offset":61},"end":{"line":188,"offset":75},"text":"Property 'cursorBackward' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":189,"offset":61},"end":{"line":189,"offset":75},"text":"Property 'cursorNextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":190,"offset":61},"end":{"line":190,"offset":80},"text":"Property 'cursorPrecedingLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":191,"offset":61},"end":{"line":191,"offset":79},"text":"Property 'cursorCharAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":192,"offset":61},"end":{"line":192,"offset":75},"text":"Property 'cursorPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":193,"offset":61},"end":{"line":193,"offset":77},"text":"Property 'cursorForwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":194,"offset":61},"end":{"line":194,"offset":75},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":195,"offset":74},"end":{"line":195,"offset":88},"text":"Property 'eraseInDisplay' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":196,"offset":61},"end":{"line":196,"offset":72},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":197,"offset":74},"end":{"line":197,"offset":85},"text":"Property 'eraseInLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":198,"offset":61},"end":{"line":198,"offset":72},"text":"Property 'insertLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":199,"offset":61},"end":{"line":199,"offset":72},"text":"Property 'deleteLines' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":200,"offset":61},"end":{"line":200,"offset":72},"text":"Property 'deleteChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":201,"offset":61},"end":{"line":201,"offset":69},"text":"Property 'scrollUp' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":202,"offset":61},"end":{"line":202,"offset":71},"text":"Property 'scrollDown' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":203,"offset":61},"end":{"line":203,"offset":71},"text":"Property 'eraseChars' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":204,"offset":61},"end":{"line":204,"offset":78},"text":"Property 'cursorBackwardTab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":205,"offset":61},"end":{"line":205,"offset":76},"text":"Property 'charPosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":206,"offset":61},"end":{"line":206,"offset":78},"text":"Property 'hPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":207,"offset":61},"end":{"line":207,"offset":85},"text":"Property 'repeatPrecedingCharacter' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":208,"offset":61},"end":{"line":208,"offset":88},"text":"Property 'sendDeviceAttributesPrimary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":209,"offset":74},"end":{"line":209,"offset":103},"text":"Property 'sendDeviceAttributesSecondary' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":210,"offset":61},"end":{"line":210,"offset":76},"text":"Property 'linePosAbsolute' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":211,"offset":61},"end":{"line":211,"offset":78},"text":"Property 'vPositionRelative' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":212,"offset":61},"end":{"line":212,"offset":71},"text":"Property 'hVPosition' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":213,"offset":61},"end":{"line":213,"offset":69},"text":"Property 'tabClear' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":214,"offset":61},"end":{"line":214,"offset":68},"text":"Property 'setMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":215,"offset":74},"end":{"line":215,"offset":88},"text":"Property 'setModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":216,"offset":61},"end":{"line":216,"offset":70},"text":"Property 'resetMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":217,"offset":74},"end":{"line":217,"offset":90},"text":"Property 'resetModePrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":218,"offset":61},"end":{"line":218,"offset":75},"text":"Property 'charAttributes' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":219,"offset":61},"end":{"line":219,"offset":73},"text":"Property 'deviceStatus' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":220,"offset":74},"end":{"line":220,"offset":93},"text":"Property 'deviceStatusPrivate' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":221,"offset":81},"end":{"line":221,"offset":90},"text":"Property 'softReset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":222,"offset":81},"end":{"line":222,"offset":95},"text":"Property 'setCursorStyle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":223,"offset":61},"end":{"line":223,"offset":76},"text":"Property 'setScrollRegion' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":224,"offset":61},"end":{"line":224,"offset":71},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":225,"offset":61},"end":{"line":225,"offset":74},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":226,"offset":82},"end":{"line":226,"offset":95},"text":"Property 'insertColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":227,"offset":82},"end":{"line":227,"offset":95},"text":"Property 'deleteColumns' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":232,"offset":55},"end":{"line":232,"offset":59},"text":"Property 'bell' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":233,"offset":54},"end":{"line":233,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":234,"offset":54},"end":{"line":234,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":235,"offset":54},"end":{"line":235,"offset":62},"text":"Property 'lineFeed' does not exist on type 'InputHandler'. Did you mean 'onLineFeed'?","code":2551,"category":"error","relatedInformation":[{"span":{"start":{"line":134,"offset":14},"end":{"line":134,"offset":24},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'onLineFeed' is declared here.","category":"message","code":2728}]},{"start":{"line":236,"offset":54},"end":{"line":236,"offset":68},"text":"Property 'carriageReturn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":237,"offset":54},"end":{"line":237,"offset":63},"text":"Property 'backspace' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":238,"offset":54},"end":{"line":238,"offset":57},"text":"Property 'tab' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":239,"offset":54},"end":{"line":239,"offset":62},"text":"Property 'shiftOut' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":240,"offset":54},"end":{"line":240,"offset":61},"text":"Property 'shiftIn' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":243,"offset":55},"end":{"line":243,"offset":60},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":244,"offset":55},"end":{"line":244,"offset":63},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":245,"offset":55},"end":{"line":245,"offset":61},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":251,"offset":73},"end":{"line":251,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":254,"offset":73},"end":{"line":254,"offset":81},"text":"Property 'setTitle' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":291,"offset":57},"end":{"line":291,"offset":67},"text":"Property 'saveCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":292,"offset":57},"end":{"line":292,"offset":70},"text":"Property 'restoreCursor' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":293,"offset":57},"end":{"line":293,"offset":62},"text":"Property 'index' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":294,"offset":57},"end":{"line":294,"offset":65},"text":"Property 'nextLine' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":295,"offset":57},"end":{"line":295,"offset":63},"text":"Property 'tabSet' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":296,"offset":57},"end":{"line":296,"offset":69},"text":"Property 'reverseIndex' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":297,"offset":57},"end":{"line":297,"offset":78},"text":"Property 'keypadApplicationMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":298,"offset":57},"end":{"line":298,"offset":74},"text":"Property 'keypadNumericMode' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":299,"offset":57},"end":{"line":299,"offset":62},"text":"Property 'reset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":300,"offset":57},"end":{"line":300,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":301,"offset":57},"end":{"line":301,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":302,"offset":57},"end":{"line":302,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":303,"offset":57},"end":{"line":303,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":304,"offset":57},"end":{"line":304,"offset":66},"text":"Property 'setgLevel' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":305,"offset":77},"end":{"line":305,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":306,"offset":77},"end":{"line":306,"offset":97},"text":"Property 'selectDefaultCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":308,"offset":80},"end":{"line":308,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":309,"offset":80},"end":{"line":309,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":310,"offset":80},"end":{"line":310,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":311,"offset":80},"end":{"line":311,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":312,"offset":80},"end":{"line":312,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":313,"offset":80},"end":{"line":313,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":314,"offset":80},"end":{"line":314,"offset":93},"text":"Property 'selectCharset' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":316,"offset":77},"end":{"line":316,"offset":99},"text":"Property 'screenAlignmentPattern' does not exist on type 'InputHandler'.","code":2339,"category":"error"},{"start":{"line":377,"offset":5},"end":{"line":377,"offset":12},"text":"Member 'console' implicitly has an 'any' type.","code":7008,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"'log', which lacks return-type annotation, implicitly has an 'any' return type.","code":7010,"category":"error"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":377,"offset":35},"end":{"line":377,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":71},"end":{"line":377,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":35},"end":{"line":378,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":378,"offset":71},"end":{"line":378,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":10},"end":{"line":379,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":33},"end":{"line":379,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":379,"offset":62},"end":{"line":379,"offset":78},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":20},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":382,"offset":16},"end":{"line":382,"offset":61},"text":"Expected 0 arguments, but got 6.","code":2554,"category":"error"},{"start":{"line":382,"offset":35},"end":{"line":382,"offset":40},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":382,"offset":42},"end":{"line":382,"offset":48},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":50},"end":{"line":382,"offset":53},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":382,"offset":55},"end":{"line":382,"offset":61},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":382,"offset":69},"end":{"line":395,"offset":37},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":383,"offset":5},"end":{"line":383,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":383,"offset":15},"end":{"line":383,"offset":21},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":384,"offset":5},"end":{"line":384,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":384,"offset":18},"end":{"line":384,"offset":24},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":385,"offset":11},"end":{"line":385,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":385,"offset":25},"end":{"line":385,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":386,"offset":11},"end":{"line":386,"offset":18},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":386,"offset":26},"end":{"line":386,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":387,"offset":11},"end":{"line":387,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":387,"offset":35},"end":{"line":387,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":388,"offset":11},"end":{"line":388,"offset":15},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":388,"offset":23},"end":{"line":388,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":389,"offset":11},"end":{"line":389,"offset":25},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":389,"offset":33},"end":{"line":389,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":390,"offset":11},"end":{"line":390,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":390,"offset":29},"end":{"line":390,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":391,"offset":11},"end":{"line":391,"offset":18},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":391,"offset":26},"end":{"line":391,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":392,"offset":5},"end":{"line":392,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":392,"offset":9},"end":{"line":392,"offset":18},"text":"No value exists in scope for the shorthand property 'bufferRow'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":394,"offset":37},"end":{"line":394,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"Parameter 'pos' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"Parameter 'end' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":43},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":396,"offset":7},"end":{"line":396,"offset":11},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":396,"offset":14},"end":{"line":396,"offset":18},"text":"Block-scoped variable 'data' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1217,"offset":11},"end":{"line":1217,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'data' is declared here.","category":"message","code":2728}]},{"start":{"line":396,"offset":19},"end":{"line":396,"offset":22},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":400,"offset":7},"end":{"line":400,"offset":14},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":400,"offset":25},"end":{"line":400,"offset":29},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":11},"end":{"line":405,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":405,"offset":25},"end":{"line":405,"offset":32},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":20},"end":{"line":406,"offset":27},"text":"Cannot find name 'charset'.","code":2304,"category":"error"},{"start":{"line":406,"offset":48},"end":{"line":406,"offset":52},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":408,"offset":11},"end":{"line":408,"offset":15},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":412,"offset":11},"end":{"line":412,"offset":27},"text":"Cannot find name 'screenReaderMode'.","code":2304,"category":"error"},{"start":{"line":413,"offset":14},"end":{"line":413,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":413,"offset":67},"end":{"line":413,"offset":71},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":421,"offset":12},"end":{"line":421,"offset":19},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":421,"offset":23},"end":{"line":421,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":422,"offset":14},"end":{"line":422,"offset":23},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":422,"offset":33},"end":{"line":422,"offset":39},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":11},"end":{"line":426,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":426,"offset":40},"end":{"line":426,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":426,"offset":54},"end":{"line":426,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":428,"offset":11},"end":{"line":428,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":428,"offset":40},"end":{"line":428,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":428,"offset":54},"end":{"line":428,"offset":58},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":438,"offset":11},"end":{"line":438,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":438,"offset":22},"end":{"line":438,"offset":29},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":438,"offset":37},"end":{"line":438,"offset":41},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":441,"offset":13},"end":{"line":441,"offset":27},"text":"Cannot find name 'wraparoundMode'.","code":2304,"category":"error"},{"start":{"line":442,"offset":11},"end":{"line":442,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":443,"offset":11},"end":{"line":443,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":15},"end":{"line":444,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":444,"offset":28},"end":{"line":444,"offset":34},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":445,"offset":13},"end":{"line":445,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":446,"offset":18},"end":{"line":446,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":448,"offset":17},"end":{"line":448,"offset":23},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":448,"offset":34},"end":{"line":448,"offset":48},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":449,"offset":15},"end":{"line":449,"offset":21},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":449,"offset":31},"end":{"line":449,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":453,"offset":13},"end":{"line":453,"offset":19},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":453,"offset":30},"end":{"line":453,"offset":36},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":11},"end":{"line":456,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":456,"offset":23},"end":{"line":456,"offset":29},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":40},"end":{"line":456,"offset":46},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":456,"offset":51},"end":{"line":456,"offset":57},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":11},"end":{"line":458,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":458,"offset":22},"end":{"line":458,"offset":26},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":459,"offset":15},"end":{"line":459,"offset":22},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":468,"offset":11},"end":{"line":468,"offset":21},"text":"Cannot find name 'insertMode'.","code":2304,"category":"error"},{"start":{"line":470,"offset":9},"end":{"line":470,"offset":18},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":470,"offset":31},"end":{"line":470,"offset":37},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":41},"end":{"line":470,"offset":48},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":470,"offset":50},"end":{"line":470,"offset":56},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":470,"offset":69},"end":{"line":470,"offset":76},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":474,"offset":13},"end":{"line":474,"offset":22},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":474,"offset":32},"end":{"line":474,"offset":36},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":11},"end":{"line":475,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":475,"offset":42},"end":{"line":475,"offset":46},"text":"Cannot find name 'cols'.","code":2304,"category":"error"},{"start":{"line":475,"offset":85},"end":{"line":475,"offset":92},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":475,"offset":97},"end":{"line":475,"offset":104},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":7},"end":{"line":480,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":480,"offset":38},"end":{"line":480,"offset":44},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":480,"offset":50},"end":{"line":480,"offset":54},"text":"Cannot find name 'code'.","code":2304,"category":"error"},{"start":{"line":480,"offset":56},"end":{"line":480,"offset":63},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":480,"offset":65},"end":{"line":480,"offset":72},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":480,"offset":77},"end":{"line":480,"offset":84},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":485,"offset":11},"end":{"line":485,"offset":18},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":486,"offset":18},"end":{"line":486,"offset":25},"text":"Cannot find name 'chWidth'.","code":2304,"category":"error"},{"start":{"line":488,"offset":11},"end":{"line":488,"offset":20},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":488,"offset":42},"end":{"line":488,"offset":48},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":488,"offset":60},"end":{"line":488,"offset":67},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":488,"offset":72},"end":{"line":488,"offset":79},"text":"Cannot find name 'curAttr'.","code":2304,"category":"error"},{"start":{"line":496,"offset":9},"end":{"line":496,"offset":12},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":497,"offset":7},"end":{"line":497,"offset":16},"text":"Cannot find name 'bufferRow'.","code":2304,"category":"error"},{"start":{"line":497,"offset":26},"end":{"line":497,"offset":32},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":497,"offset":45},"end":{"line":497,"offset":54},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":16},"end":{"line":498,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":498,"offset":51},"end":{"line":498,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":499,"offset":14},"end":{"line":499,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":500,"offset":23},"end":{"line":500,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":14},"end":{"line":501,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":501,"offset":48},"end":{"line":501,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":14},"end":{"line":503,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":503,"offset":48},"end":{"line":503,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":10},"end":{"line":506,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":506,"offset":37},"end":{"line":506,"offset":43},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":512,"offset":10},"end":{"line":512,"offset":23},"text":"Cannot find name 'addCsiHandler'.","code":2304,"category":"error"},{"start":{"line":512,"offset":24},"end":{"line":512,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":512,"offset":28},"end":{"line":512,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":49},"end":{"line":512,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":512,"offset":80},"end":{"line":512,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":512,"offset":90},"end":{"line":512,"offset":101},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":23},"text":"Cannot find name 'addDcsHandler'.","code":2304,"category":"error"},{"start":{"line":519,"offset":24},"end":{"line":519,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":519,"offset":28},"end":{"line":519,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":49},"end":{"line":519,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":519,"offset":93},"end":{"line":519,"offset":100},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":519,"offset":103},"end":{"line":519,"offset":114},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":10},"end":{"line":526,"offset":23},"text":"Cannot find name 'addEscHandler'.","code":2304,"category":"error"},{"start":{"line":526,"offset":24},"end":{"line":526,"offset":26},"text":"Cannot find name 'id'.","code":2304,"category":"error"},{"start":{"line":526,"offset":28},"end":{"line":526,"offset":47},"text":"'IFunctionIdentifier' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":49},"end":{"line":526,"offset":57},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":526,"offset":65},"end":{"line":526,"offset":72},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":526,"offset":75},"end":{"line":526,"offset":86},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":10},"end":{"line":533,"offset":23},"text":"Cannot find name 'addOscHandler'.","code":2304,"category":"error"},{"start":{"line":533,"offset":24},"end":{"line":533,"offset":29},"text":"Cannot find name 'ident'.","code":2304,"category":"error"},{"start":{"line":533,"offset":31},"end":{"line":533,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":39},"end":{"line":533,"offset":47},"text":"Cannot find name 'callback'.","code":2304,"category":"error"},{"start":{"line":533,"offset":67},"end":{"line":533,"offset":74},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":533,"offset":77},"end":{"line":533,"offset":88},"text":"'IDisposable' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":541,"offset":10},"end":{"line":541,"offset":14},"text":"Cannot find name 'bell'.","code":2304,"category":"error"},{"start":{"line":549,"offset":10},"end":{"line":549,"offset":18},"text":"Cannot find name 'lineFeed'.","code":2304,"category":"error"},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":551,"offset":11},"end":{"line":551,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":551,"offset":25},"end":{"line":551,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":554,"offset":7},"end":{"line":554,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":556,"offset":5},"end":{"line":556,"offset":11},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":9},"end":{"line":557,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":557,"offset":22},"end":{"line":557,"offset":28},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":558,"offset":7},"end":{"line":558,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":559,"offset":12},"end":{"line":559,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":560,"offset":16},"end":{"line":560,"offset":22},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":560,"offset":33},"end":{"line":560,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":561,"offset":7},"end":{"line":561,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":561,"offset":23},"end":{"line":561,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":564,"offset":9},"end":{"line":564,"offset":15},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":564,"offset":26},"end":{"line":564,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":565,"offset":7},"end":{"line":565,"offset":13},"text":"Block-scoped variable 'buffer' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":827,"offset":11},"end":{"line":827,"offset":17},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'buffer' is declared here.","category":"message","code":2728}]},{"start":{"line":568,"offset":10},"end":{"line":568,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":575,"offset":10},"end":{"line":575,"offset":24},"text":"Cannot find name 'carriageReturn'.","code":2304,"category":"error"},{"start":{"line":583,"offset":10},"end":{"line":583,"offset":19},"text":"Cannot find name 'backspace'.","code":2304,"category":"error"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":586,"offset":12},"end":{"line":586,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":594,"offset":10},"end":{"line":594,"offset":13},"text":"Cannot find name 'tab'.","code":2304,"category":"error"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":595,"offset":46},"end":{"line":595,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":598,"offset":28},"end":{"line":598,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":10},"end":{"line":599,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":599,"offset":41},"end":{"line":599,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":600,"offset":14},"end":{"line":600,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":12},"end":{"line":601,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":601,"offset":49},"end":{"line":601,"offset":63},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":610,"offset":10},"end":{"line":610,"offset":18},"text":"Cannot find name 'shiftOut'.","code":2304,"category":"error"},{"start":{"line":619,"offset":10},"end":{"line":619,"offset":17},"text":"Cannot find name 'shiftIn'.","code":2304,"category":"error"},{"start":{"line":626,"offset":11},"end":{"line":626,"offset":26},"text":"Cannot find name '_restrictCursor'.","code":2304,"category":"error"},{"start":{"line":627,"offset":50},"end":{"line":627,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":627,"offset":92},"end":{"line":627,"offset":106},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":628,"offset":41},"end":{"line":628,"offset":50},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":23},"end":{"line":629,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":73},"end":{"line":629,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":629,"offset":111},"end":{"line":629,"offset":125},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":23},"end":{"line":630,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":630,"offset":65},"end":{"line":630,"offset":79},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":636,"offset":11},"end":{"line":636,"offset":21},"text":"Cannot find name '_setCursor'.","code":2304,"category":"error"},{"start":{"line":636,"offset":22},"end":{"line":636,"offset":23},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":636,"offset":25},"end":{"line":636,"offset":31},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":636,"offset":33},"end":{"line":636,"offset":34},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":636,"offset":36},"end":{"line":636,"offset":42},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":638,"offset":12},"end":{"line":638,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":638,"offset":38},"end":{"line":638,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":639,"offset":12},"end":{"line":639,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":43},"end":{"line":639,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":639,"offset":77},"end":{"line":639,"offset":78},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":641,"offset":12},"end":{"line":641,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":641,"offset":38},"end":{"line":641,"offset":39},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":642,"offset":12},"end":{"line":642,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":642,"offset":38},"end":{"line":642,"offset":39},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":644,"offset":10},"end":{"line":644,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":650,"offset":11},"end":{"line":650,"offset":22},"text":"Cannot find name '_moveCursor'.","code":2304,"category":"error"},{"start":{"line":650,"offset":23},"end":{"line":650,"offset":24},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":650,"offset":26},"end":{"line":650,"offset":32},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":650,"offset":34},"end":{"line":650,"offset":35},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":650,"offset":37},"end":{"line":650,"offset":43},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":654,"offset":26},"end":{"line":654,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":52},"end":{"line":654,"offset":53},"text":"Cannot find name 'x'.","code":2304,"category":"error"},{"start":{"line":654,"offset":60},"end":{"line":654,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":654,"offset":86},"end":{"line":654,"offset":87},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":661,"offset":10},"end":{"line":661,"offset":18},"text":"Cannot find name 'cursorUp'.","code":2304,"category":"error"},{"start":{"line":661,"offset":19},"end":{"line":661,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":661,"offset":27},"end":{"line":661,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":661,"offset":37},"end":{"line":664,"offset":18},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":663,"offset":11},"end":{"line":663,"offset":20},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":663,"offset":28},"end":{"line":663,"offset":42},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":663,"offset":59},"end":{"line":663,"offset":73},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"Parameter 'diffToTop' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":665,"offset":12},"end":{"line":665,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":665,"offset":37},"end":{"line":665,"offset":46},"text":"Cannot find name 'diffToTop'.","code":2304,"category":"error"},{"start":{"line":665,"offset":48},"end":{"line":665,"offset":54},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":667,"offset":12},"end":{"line":667,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":667,"offset":29},"end":{"line":667,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":10},"end":{"line":675,"offset":20},"text":"Cannot find name 'cursorDown'.","code":2304,"category":"error"},{"start":{"line":675,"offset":21},"end":{"line":675,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":675,"offset":29},"end":{"line":675,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":675,"offset":39},"end":{"line":678,"offset":21},"text":"Object is possibly 'undefined'.","code":2532,"category":"error"},{"start":{"line":677,"offset":11},"end":{"line":677,"offset":23},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":677,"offset":31},"end":{"line":677,"offset":45},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":677,"offset":73},"end":{"line":677,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"Parameter 'diffToBottom' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":679,"offset":12},"end":{"line":679,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":679,"offset":36},"end":{"line":679,"offset":48},"text":"Cannot find name 'diffToBottom'.","code":2304,"category":"error"},{"start":{"line":679,"offset":50},"end":{"line":679,"offset":56},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":681,"offset":12},"end":{"line":681,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":681,"offset":27},"end":{"line":681,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":10},"end":{"line":689,"offset":23},"text":"Cannot find name 'cursorForward'.","code":2304,"category":"error"},{"start":{"line":689,"offset":24},"end":{"line":689,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":689,"offset":32},"end":{"line":689,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":690,"offset":22},"end":{"line":690,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":10},"end":{"line":697,"offset":24},"text":"Cannot find name 'cursorBackward'.","code":2304,"category":"error"},{"start":{"line":697,"offset":25},"end":{"line":697,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":697,"offset":33},"end":{"line":697,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":698,"offset":24},"end":{"line":698,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":10},"end":{"line":706,"offset":24},"text":"Cannot find name 'cursorNextLine'.","code":2304,"category":"error"},{"start":{"line":706,"offset":25},"end":{"line":706,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":706,"offset":33},"end":{"line":706,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":707,"offset":21},"end":{"line":707,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":10},"end":{"line":716,"offset":29},"text":"Cannot find name 'cursorPrecedingLine'.","code":2304,"category":"error"},{"start":{"line":716,"offset":30},"end":{"line":716,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":716,"offset":38},"end":{"line":716,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":717,"offset":19},"end":{"line":717,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":10},"end":{"line":725,"offset":28},"text":"Cannot find name 'cursorCharAbsolute'.","code":2304,"category":"error"},{"start":{"line":725,"offset":29},"end":{"line":725,"offset":35},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":725,"offset":37},"end":{"line":725,"offset":44},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":726,"offset":22},"end":{"line":726,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":726,"offset":55},"end":{"line":726,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":733,"offset":10},"end":{"line":733,"offset":24},"text":"Cannot find name 'cursorPosition'.","code":2304,"category":"error"},{"start":{"line":733,"offset":25},"end":{"line":733,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":733,"offset":33},"end":{"line":733,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":736,"offset":8},"end":{"line":736,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":736,"offset":31},"end":{"line":736,"offset":37},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":738,"offset":8},"end":{"line":738,"offset":14},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":10},"end":{"line":746,"offset":25},"text":"Cannot find name 'charPosAbsolute'.","code":2304,"category":"error"},{"start":{"line":746,"offset":26},"end":{"line":746,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":746,"offset":34},"end":{"line":746,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":747,"offset":22},"end":{"line":747,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":747,"offset":55},"end":{"line":747,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":755,"offset":10},"end":{"line":755,"offset":27},"text":"Cannot find name 'hPositionRelative'.","code":2304,"category":"error"},{"start":{"line":755,"offset":28},"end":{"line":755,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":755,"offset":36},"end":{"line":755,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":756,"offset":22},"end":{"line":756,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":10},"end":{"line":763,"offset":25},"text":"Cannot find name 'linePosAbsolute'.","code":2304,"category":"error"},{"start":{"line":763,"offset":26},"end":{"line":763,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":763,"offset":34},"end":{"line":763,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":764,"offset":26},"end":{"line":764,"offset":40},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":764,"offset":52},"end":{"line":764,"offset":58},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":10},"end":{"line":772,"offset":27},"text":"Cannot find name 'vPositionRelative'.","code":2304,"category":"error"},{"start":{"line":772,"offset":28},"end":{"line":772,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":772,"offset":36},"end":{"line":772,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":773,"offset":25},"end":{"line":773,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":10},"end":{"line":782,"offset":20},"text":"Cannot find name 'hVPosition'.","code":2304,"category":"error"},{"start":{"line":782,"offset":21},"end":{"line":782,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":782,"offset":29},"end":{"line":782,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":783,"offset":25},"end":{"line":783,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":10},"end":{"line":794,"offset":18},"text":"Cannot find name 'tabClear'.","code":2304,"category":"error"},{"start":{"line":794,"offset":19},"end":{"line":794,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":794,"offset":27},"end":{"line":794,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":795,"offset":11},"end":{"line":795,"offset":16},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":795,"offset":19},"end":{"line":795,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":797,"offset":19},"end":{"line":797,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":797,"offset":51},"end":{"line":797,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":798,"offset":16},"end":{"line":798,"offset":21},"text":"Block-scoped variable 'param' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":799,"offset":12},"end":{"line":799,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":807,"offset":10},"end":{"line":807,"offset":26},"text":"Cannot find name 'cursorForwardTab'.","code":2304,"category":"error"},{"start":{"line":807,"offset":27},"end":{"line":807,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":807,"offset":35},"end":{"line":807,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":808,"offset":46},"end":{"line":808,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":811,"offset":17},"end":{"line":811,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":813,"offset":12},"end":{"line":813,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":813,"offset":43},"end":{"line":813,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":820,"offset":10},"end":{"line":820,"offset":27},"text":"Cannot find name 'cursorBackwardTab'.","code":2304,"category":"error"},{"start":{"line":820,"offset":28},"end":{"line":820,"offset":34},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":820,"offset":36},"end":{"line":820,"offset":43},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":821,"offset":46},"end":{"line":821,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":824,"offset":17},"end":{"line":824,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":827,"offset":25},"end":{"line":827,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":842,"offset":11},"end":{"line":842,"offset":29},"text":"Cannot find name '_eraseInBufferLine'.","code":2304,"category":"error"},{"start":{"line":842,"offset":30},"end":{"line":842,"offset":31},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":842,"offset":33},"end":{"line":842,"offset":39},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":41},"end":{"line":842,"offset":46},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":842,"offset":48},"end":{"line":842,"offset":54},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":56},"end":{"line":842,"offset":59},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":842,"offset":61},"end":{"line":842,"offset":67},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":842,"offset":69},"end":{"line":842,"offset":78},"text":"Cannot find name 'clearWrap'.","code":2304,"category":"error"},{"start":{"line":842,"offset":80},"end":{"line":842,"offset":87},"text":"'boolean' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":843,"offset":11},"end":{"line":843,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":843,"offset":23},"end":{"line":843,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":60},"end":{"line":843,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":843,"offset":90},"end":{"line":843,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":844,"offset":5},"end":{"line":844,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":845,"offset":7},"end":{"line":845,"offset":12},"text":"Cannot find name 'start'.","code":2304,"category":"error"},{"start":{"line":846,"offset":7},"end":{"line":846,"offset":10},"text":"Cannot find name 'end'.","code":2304,"category":"error"},{"start":{"line":847,"offset":12},"end":{"line":847,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":847,"offset":51},"end":{"line":847,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"Parameter 'clearWrap' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":850,"offset":7},"end":{"line":850,"offset":11},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":859,"offset":11},"end":{"line":859,"offset":27},"text":"Cannot find name '_resetBufferLine'.","code":2304,"category":"error"},{"start":{"line":859,"offset":28},"end":{"line":859,"offset":29},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":859,"offset":31},"end":{"line":859,"offset":37},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":860,"offset":11},"end":{"line":860,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":860,"offset":23},"end":{"line":860,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":60},"end":{"line":860,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":860,"offset":90},"end":{"line":860,"offset":91},"text":"Cannot find name 'y'.","code":2304,"category":"error"},{"start":{"line":861,"offset":5},"end":{"line":861,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":861,"offset":20},"end":{"line":861,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":861,"offset":59},"end":{"line":861,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":862,"offset":5},"end":{"line":862,"offset":9},"text":"No value exists in scope for the shorthand property 'line'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":877,"offset":10},"end":{"line":877,"offset":24},"text":"Cannot find name 'eraseInDisplay'.","code":2304,"category":"error"},{"start":{"line":877,"offset":25},"end":{"line":877,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":877,"offset":33},"end":{"line":877,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":879,"offset":5},"end":{"line":879,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":879,"offset":9},"end":{"line":879,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":882,"offset":9},"end":{"line":882,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":882,"offset":18},"end":{"line":882,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":14},"end":{"line":883,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":883,"offset":41},"end":{"line":883,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":14},"end":{"line":884,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":33},"end":{"line":884,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":884,"offset":43},"end":{"line":884,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":73},"end":{"line":884,"offset":87},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":884,"offset":99},"end":{"line":884,"offset":113},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":16},"end":{"line":885,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":885,"offset":25},"end":{"line":885,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":885,"offset":46},"end":{"line":885,"offset":47},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":886,"offset":16},"end":{"line":886,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":886,"offset":33},"end":{"line":886,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":888,"offset":14},"end":{"line":888,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":888,"offset":41},"end":{"line":888,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":9},"end":{"line":891,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":891,"offset":18},"end":{"line":891,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":14},"end":{"line":892,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":892,"offset":41},"end":{"line":892,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":14},"end":{"line":894,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":894,"offset":33},"end":{"line":894,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":894,"offset":44},"end":{"line":894,"offset":58},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":18},"end":{"line":895,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":895,"offset":54},"end":{"line":895,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":16},"end":{"line":897,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":897,"offset":48},"end":{"line":897,"offset":49},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":899,"offset":16},"end":{"line":899,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":900,"offset":16},"end":{"line":900,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":900,"offset":33},"end":{"line":900,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":902,"offset":14},"end":{"line":902,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":905,"offset":9},"end":{"line":905,"offset":10},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":905,"offset":18},"end":{"line":905,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":14},"end":{"line":906,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":906,"offset":41},"end":{"line":906,"offset":42},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":907,"offset":16},"end":{"line":907,"offset":17},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":908,"offset":16},"end":{"line":908,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":908,"offset":33},"end":{"line":908,"offset":34},"text":"Block-scoped variable 'j' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1000,"offset":9},"end":{"line":1000,"offset":10},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'j' is declared here.","category":"message","code":2728}]},{"start":{"line":910,"offset":14},"end":{"line":910,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":37},"end":{"line":914,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":914,"offset":79},"end":{"line":914,"offset":93},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":916,"offset":16},"end":{"line":916,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":16},"end":{"line":917,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":917,"offset":60},"end":{"line":917,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":16},"end":{"line":918,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":918,"offset":60},"end":{"line":918,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":920,"offset":16},"end":{"line":920,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":937,"offset":10},"end":{"line":937,"offset":21},"text":"Cannot find name 'eraseInLine'.","code":2304,"category":"error"},{"start":{"line":937,"offset":22},"end":{"line":937,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":937,"offset":30},"end":{"line":937,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":941,"offset":14},"end":{"line":941,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":38},"end":{"line":941,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":68},"end":{"line":941,"offset":82},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":941,"offset":98},"end":{"line":941,"offset":112},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":14},"end":{"line":944,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":38},"end":{"line":944,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":944,"offset":71},"end":{"line":944,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":14},"end":{"line":947,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":38},"end":{"line":947,"offset":52},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":947,"offset":71},"end":{"line":947,"offset":85},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":10},"end":{"line":950,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":950,"offset":42},"end":{"line":950,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":957,"offset":10},"end":{"line":957,"offset":21},"text":"Cannot find name 'insertLines'.","code":2304,"category":"error"},{"start":{"line":957,"offset":22},"end":{"line":957,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":957,"offset":30},"end":{"line":957,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":959,"offset":5},"end":{"line":959,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":962,"offset":11},"end":{"line":962,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":962,"offset":25},"end":{"line":962,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":970,"offset":41},"end":{"line":970,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":971,"offset":39},"end":{"line":971,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":976,"offset":60},"end":{"line":976,"offset":69},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":979,"offset":10},"end":{"line":979,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":987,"offset":10},"end":{"line":987,"offset":21},"text":"Cannot find name 'deleteLines'.","code":2304,"category":"error"},{"start":{"line":987,"offset":22},"end":{"line":987,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":987,"offset":30},"end":{"line":987,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":989,"offset":5},"end":{"line":989,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":992,"offset":11},"end":{"line":992,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":992,"offset":25},"end":{"line":992,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1001,"offset":14},"end":{"line":1001,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1002,"offset":14},"end":{"line":1002,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1007,"offset":58},"end":{"line":1007,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1010,"offset":10},"end":{"line":1010,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1018,"offset":10},"end":{"line":1018,"offset":21},"text":"Cannot find name 'insertChars'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":22},"end":{"line":1018,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1018,"offset":30},"end":{"line":1018,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1020,"offset":11},"end":{"line":1020,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1020,"offset":23},"end":{"line":1020,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":60},"end":{"line":1020,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1020,"offset":91},"end":{"line":1020,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1024,"offset":9},"end":{"line":1024,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":10},"end":{"line":1035,"offset":21},"text":"Cannot find name 'deleteChars'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":22},"end":{"line":1035,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1035,"offset":30},"end":{"line":1035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1037,"offset":11},"end":{"line":1037,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1037,"offset":23},"end":{"line":1037,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":60},"end":{"line":1037,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1037,"offset":91},"end":{"line":1037,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1041,"offset":9},"end":{"line":1041,"offset":15},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":10},"end":{"line":1051,"offset":18},"text":"Cannot find name 'scrollUp'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":19},"end":{"line":1051,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1051,"offset":27},"end":{"line":1051,"offset":34},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1051,"offset":42},"end":{"line":1057,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1052,"offset":5},"end":{"line":1052,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1055,"offset":11},"end":{"line":1055,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1055,"offset":25},"end":{"line":1055,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1059,"offset":91},"end":{"line":1059,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1061,"offset":10},"end":{"line":1061,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1067,"offset":10},"end":{"line":1067,"offset":20},"text":"Cannot find name 'scrollDown'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":21},"end":{"line":1067,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1067,"offset":29},"end":{"line":1067,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1067,"offset":44},"end":{"line":1073,"offset":17},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1068,"offset":5},"end":{"line":1068,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1071,"offset":11},"end":{"line":1071,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1071,"offset":25},"end":{"line":1071,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1077,"offset":10},"end":{"line":1077,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1094,"offset":10},"end":{"line":1094,"offset":20},"text":"Cannot find name 'scrollLeft'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":21},"end":{"line":1094,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1094,"offset":29},"end":{"line":1094,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1095,"offset":11},"end":{"line":1095,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1095,"offset":25},"end":{"line":1095,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1099,"offset":19},"end":{"line":1099,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1102,"offset":58},"end":{"line":1102,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1105,"offset":10},"end":{"line":1105,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1122,"offset":10},"end":{"line":1122,"offset":21},"text":"Cannot find name 'scrollRight'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":22},"end":{"line":1122,"offset":28},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1122,"offset":30},"end":{"line":1122,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1123,"offset":11},"end":{"line":1123,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1123,"offset":25},"end":{"line":1123,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1127,"offset":19},"end":{"line":1127,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1130,"offset":58},"end":{"line":1130,"offset":67},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1133,"offset":10},"end":{"line":1133,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1140,"offset":10},"end":{"line":1140,"offset":23},"text":"Cannot find name 'insertColumns'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":24},"end":{"line":1140,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1140,"offset":32},"end":{"line":1140,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1141,"offset":11},"end":{"line":1141,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1141,"offset":25},"end":{"line":1141,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1145,"offset":19},"end":{"line":1145,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1147,"offset":25},"end":{"line":1147,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1148,"offset":65},"end":{"line":1148,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1151,"offset":10},"end":{"line":1151,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1158,"offset":10},"end":{"line":1158,"offset":23},"text":"Cannot find name 'deleteColumns'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":24},"end":{"line":1158,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1158,"offset":32},"end":{"line":1158,"offset":39},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1159,"offset":11},"end":{"line":1159,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":1159,"offset":25},"end":{"line":1159,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1163,"offset":19},"end":{"line":1163,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1166,"offset":65},"end":{"line":1166,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1169,"offset":10},"end":{"line":1169,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1176,"offset":10},"end":{"line":1176,"offset":20},"text":"Cannot find name 'eraseChars'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":21},"end":{"line":1176,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1176,"offset":29},"end":{"line":1176,"offset":36},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1178,"offset":11},"end":{"line":1178,"offset":15},"text":"Cannot find name 'line'.","code":2304,"category":"error"},{"start":{"line":1178,"offset":23},"end":{"line":1178,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":60},"end":{"line":1178,"offset":74},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1178,"offset":91},"end":{"line":1178,"offset":105},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"Parameter 'line' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1182,"offset":41},"end":{"line":1182,"offset":47},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":10},"end":{"line":1211,"offset":34},"text":"Cannot find name 'repeatPrecedingCharacter'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":35},"end":{"line":1211,"offset":41},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1211,"offset":43},"end":{"line":1211,"offset":50},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1216,"offset":20},"end":{"line":1216,"offset":26},"text":"Cannot find name 'params'. Did you mean 'param'?","code":2552,"category":"error","relatedInformation":[{"span":{"start":{"line":811,"offset":9},"end":{"line":811,"offset":14},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'param' is declared here.","category":"message","code":2728}]},{"start":{"line":1219,"offset":22},"end":{"line":1219,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1221,"offset":16},"end":{"line":1221,"offset":36},"text":"Expected 0 arguments, but got 3.","code":2554,"category":"error"},{"start":{"line":1261,"offset":10},"end":{"line":1261,"offset":37},"text":"Cannot find name 'sendDeviceAttributesPrimary'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":38},"end":{"line":1261,"offset":44},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1261,"offset":46},"end":{"line":1261,"offset":53},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1265,"offset":14},"end":{"line":1265,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":44},"end":{"line":1265,"offset":53},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1265,"offset":81},"end":{"line":1265,"offset":90},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1266,"offset":12},"end":{"line":1266,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1267,"offset":21},"end":{"line":1267,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1268,"offset":12},"end":{"line":1268,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1271,"offset":10},"end":{"line":1271,"offset":39},"text":"Cannot find name 'sendDeviceAttributesSecondary'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":40},"end":{"line":1271,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1271,"offset":48},"end":{"line":1271,"offset":55},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1278,"offset":14},"end":{"line":1278,"offset":23},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1279,"offset":12},"end":{"line":1279,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1280,"offset":21},"end":{"line":1280,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1281,"offset":12},"end":{"line":1281,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1282,"offset":21},"end":{"line":1282,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":12},"end":{"line":1285,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1285,"offset":42},"end":{"line":1285,"offset":48},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1286,"offset":21},"end":{"line":1286,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1287,"offset":12},"end":{"line":1287,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1377,"offset":10},"end":{"line":1377,"offset":17},"text":"Cannot find name 'setMode'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":18},"end":{"line":1377,"offset":24},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1377,"offset":26},"end":{"line":1377,"offset":33},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1377,"offset":41},"end":{"line":1378,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1378,"offset":40},"end":{"line":1378,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1379,"offset":15},"end":{"line":1379,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1379,"offset":29},"end":{"line":1379,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1381,"offset":16},"end":{"line":1381,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1389,"offset":10},"end":{"line":1389,"offset":24},"text":"Cannot find name 'setModePrivate'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":25},"end":{"line":1389,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1389,"offset":33},"end":{"line":1389,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1389,"offset":48},"end":{"line":1390,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1390,"offset":40},"end":{"line":1390,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1391,"offset":15},"end":{"line":1391,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1391,"offset":29},"end":{"line":1391,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1393,"offset":16},"end":{"line":1393,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1396,"offset":16},"end":{"line":1396,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1397,"offset":16},"end":{"line":1397,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1398,"offset":16},"end":{"line":1398,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1399,"offset":16},"end":{"line":1399,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":16},"end":{"line":1404,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1404,"offset":43},"end":{"line":1404,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":16},"end":{"line":1405,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1405,"offset":43},"end":{"line":1405,"offset":57},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1406,"offset":16},"end":{"line":1406,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1409,"offset":16},"end":{"line":1409,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1410,"offset":16},"end":{"line":1410,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1413,"offset":16},"end":{"line":1413,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1419,"offset":16},"end":{"line":1419,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1420,"offset":16},"end":{"line":1420,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1421,"offset":20},"end":{"line":1421,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1422,"offset":18},"end":{"line":1422,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1427,"offset":16},"end":{"line":1427,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1431,"offset":16},"end":{"line":1431,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1434,"offset":16},"end":{"line":1434,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1439,"offset":16},"end":{"line":1439,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1444,"offset":16},"end":{"line":1444,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1447,"offset":16},"end":{"line":1447,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1450,"offset":16},"end":{"line":1450,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1453,"offset":16},"end":{"line":1453,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1456,"offset":16},"end":{"line":1456,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1459,"offset":16},"end":{"line":1459,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1462,"offset":16},"end":{"line":1462,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":16},"end":{"line":1466,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1466,"offset":62},"end":{"line":1466,"offset":71},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":16},"end":{"line":1467,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1467,"offset":42},"end":{"line":1467,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1468,"offset":20},"end":{"line":1468,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1469,"offset":18},"end":{"line":1469,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1471,"offset":16},"end":{"line":1471,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1474,"offset":16},"end":{"line":1474,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1563,"offset":10},"end":{"line":1563,"offset":19},"text":"Cannot find name 'resetMode'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":20},"end":{"line":1563,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1563,"offset":28},"end":{"line":1563,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1563,"offset":43},"end":{"line":1564,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1564,"offset":40},"end":{"line":1564,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1565,"offset":15},"end":{"line":1565,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1565,"offset":29},"end":{"line":1565,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1567,"offset":16},"end":{"line":1567,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1575,"offset":10},"end":{"line":1575,"offset":26},"text":"Cannot find name 'resetModePrivate'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":27},"end":{"line":1575,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1575,"offset":35},"end":{"line":1575,"offset":42},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1575,"offset":50},"end":{"line":1576,"offset":41},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":19},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"Parameter 'i' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1576,"offset":40},"end":{"line":1576,"offset":41},"text":"No value exists in scope for the shorthand property 'i'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":1577,"offset":15},"end":{"line":1577,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1577,"offset":29},"end":{"line":1577,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1579,"offset":16},"end":{"line":1579,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":20},"end":{"line":1585,"offset":34},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1585,"offset":56},"end":{"line":1585,"offset":65},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":18},"end":{"line":1586,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":40},"end":{"line":1586,"offset":49},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1586,"offset":66},"end":{"line":1586,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1588,"offset":23},"end":{"line":1588,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1589,"offset":16},"end":{"line":1589,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1592,"offset":16},"end":{"line":1592,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1593,"offset":16},"end":{"line":1593,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1596,"offset":16},"end":{"line":1596,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1602,"offset":16},"end":{"line":1602,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1603,"offset":16},"end":{"line":1603,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1604,"offset":20},"end":{"line":1604,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1605,"offset":18},"end":{"line":1605,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1612,"offset":16},"end":{"line":1612,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1615,"offset":16},"end":{"line":1615,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1618,"offset":16},"end":{"line":1618,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1621,"offset":16},"end":{"line":1621,"offset":33},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1624,"offset":14},"end":{"line":1624,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1627,"offset":16},"end":{"line":1627,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1630,"offset":16},"end":{"line":1630,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1637,"offset":16},"end":{"line":1637,"offset":30},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1638,"offset":15},"end":{"line":1638,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1638,"offset":29},"end":{"line":1638,"offset":30},"text":"Cannot find name 'i'.","code":2304,"category":"error"},{"start":{"line":1639,"offset":18},"end":{"line":1639,"offset":31},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":16},"end":{"line":1641,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1641,"offset":42},"end":{"line":1641,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1642,"offset":20},"end":{"line":1642,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1643,"offset":18},"end":{"line":1643,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1645,"offset":16},"end":{"line":1645,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1648,"offset":16},"end":{"line":1648,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1658,"offset":11},"end":{"line":1658,"offset":24},"text":"Cannot find name '_extractColor'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":25},"end":{"line":1658,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":33},"end":{"line":1658,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":42},"end":{"line":1658,"offset":45},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1658,"offset":47},"end":{"line":1658,"offset":53},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":55},"end":{"line":1658,"offset":59},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1658,"offset":61},"end":{"line":1658,"offset":75},"text":"'IAttributeData' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1658,"offset":78},"end":{"line":1658,"offset":84},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1672,"offset":32},"end":{"line":1672,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1672,"offset":46},"end":{"line":1672,"offset":49},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":11},"end":{"line":1673,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1673,"offset":31},"end":{"line":1673,"offset":34},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":27},"end":{"line":1674,"offset":33},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1674,"offset":47},"end":{"line":1674,"offset":50},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":26},"end":{"line":1693,"offset":29},"text":"Cannot find name 'pos'.","code":2304,"category":"error"},{"start":{"line":1693,"offset":32},"end":{"line":1693,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1705,"offset":9},"end":{"line":1705,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1706,"offset":9},"end":{"line":1706,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1707,"offset":9},"end":{"line":1707,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1709,"offset":9},"end":{"line":1709,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1710,"offset":9},"end":{"line":1710,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1714,"offset":9},"end":{"line":1714,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1715,"offset":9},"end":{"line":1715,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1716,"offset":9},"end":{"line":1716,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1718,"offset":9},"end":{"line":1718,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1719,"offset":9},"end":{"line":1719,"offset":13},"text":"Block-scoped variable 'attr' used before its declaration.","code":2448,"category":"error","relatedInformation":[{"span":{"start":{"line":1801,"offset":11},"end":{"line":1801,"offset":15},"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts"},"message":"'attr' is declared here.","category":"message","code":2728}]},{"start":{"line":1791,"offset":10},"end":{"line":1791,"offset":24},"text":"Cannot find name 'charAttributes'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":25},"end":{"line":1791,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1791,"offset":33},"end":{"line":1791,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1793,"offset":32},"end":{"line":1793,"offset":38},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1794,"offset":12},"end":{"line":1794,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1795,"offset":12},"end":{"line":1795,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1799,"offset":15},"end":{"line":1799,"offset":21},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1801,"offset":23},"end":{"line":1801,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1804,"offset":11},"end":{"line":1804,"offset":17},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1876,"offset":19},"end":{"line":1876,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1876,"offset":33},"end":{"line":1876,"offset":39},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1884,"offset":14},"end":{"line":1884,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1912,"offset":10},"end":{"line":1912,"offset":22},"text":"Cannot find name 'deviceStatus'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":23},"end":{"line":1912,"offset":29},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1912,"offset":31},"end":{"line":1912,"offset":38},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1916,"offset":14},"end":{"line":1916,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1920,"offset":24},"end":{"line":1920,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1921,"offset":24},"end":{"line":1921,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1922,"offset":14},"end":{"line":1922,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1927,"offset":10},"end":{"line":1927,"offset":29},"text":"Cannot find name 'deviceStatusPrivate'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":30},"end":{"line":1927,"offset":36},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1927,"offset":38},"end":{"line":1927,"offset":45},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1933,"offset":24},"end":{"line":1933,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1934,"offset":24},"end":{"line":1934,"offset":38},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1935,"offset":14},"end":{"line":1935,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1960,"offset":10},"end":{"line":1960,"offset":19},"text":"Cannot find name 'softReset'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":20},"end":{"line":1960,"offset":26},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1960,"offset":28},"end":{"line":1960,"offset":35},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":1967,"offset":12},"end":{"line":1967,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1969,"offset":10},"end":{"line":1969,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1970,"offset":10},"end":{"line":1970,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":10},"end":{"line":1971,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1971,"offset":52},"end":{"line":1971,"offset":66},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1972,"offset":10},"end":{"line":1972,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":10},"end":{"line":1973,"offset":24},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1973,"offset":41},"end":{"line":1973,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1974,"offset":10},"end":{"line":1974,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1975,"offset":10},"end":{"line":1975,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1976,"offset":10},"end":{"line":1976,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":1989,"offset":10},"end":{"line":1989,"offset":24},"text":"Cannot find name 'setCursorStyle'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":25},"end":{"line":1989,"offset":31},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1989,"offset":33},"end":{"line":1989,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":1990,"offset":19},"end":{"line":1990,"offset":25},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"Parameter 'param' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2006,"offset":10},"end":{"line":2006,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2014,"offset":10},"end":{"line":2014,"offset":25},"text":"Cannot find name 'setScrollRegion'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":26},"end":{"line":2014,"offset":32},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2014,"offset":34},"end":{"line":2014,"offset":41},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2015,"offset":17},"end":{"line":2015,"offset":23},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2016,"offset":5},"end":{"line":2016,"offset":8},"text":"No value exists in scope for the shorthand property 'let'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2016,"offset":17},"end":{"line":2016,"offset":23},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"Parameter 'params' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2018,"offset":31},"end":{"line":2018,"offset":37},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":40},"end":{"line":2018,"offset":46},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2018,"offset":66},"end":{"line":2018,"offset":80},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2018,"offset":89},"end":{"line":2018,"offset":95},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":7},"end":{"line":2019,"offset":13},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2019,"offset":21},"end":{"line":2019,"offset":35},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2022,"offset":9},"end":{"line":2022,"offset":15},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2023,"offset":12},"end":{"line":2023,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2023,"offset":46},"end":{"line":2023,"offset":49},"text":"The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.","code":2362,"category":"error"},{"start":{"line":2024,"offset":12},"end":{"line":2024,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2024,"offset":49},"end":{"line":2024,"offset":55},"text":"Cannot find name 'bottom'.","code":2304,"category":"error"},{"start":{"line":2025,"offset":12},"end":{"line":2025,"offset":22},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2035,"offset":10},"end":{"line":2035,"offset":20},"text":"Cannot find name 'saveCursor'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":21},"end":{"line":2035,"offset":27},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2035,"offset":30},"end":{"line":2035,"offset":37},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2036,"offset":46},"end":{"line":2036,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":46},"end":{"line":2037,"offset":60},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2037,"offset":81},"end":{"line":2037,"offset":95},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2038,"offset":59},"end":{"line":2038,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2039,"offset":59},"end":{"line":2039,"offset":68},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2040,"offset":52},"end":{"line":2040,"offset":61},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2049,"offset":10},"end":{"line":2049,"offset":23},"text":"Cannot find name 'restoreCursor'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":24},"end":{"line":2049,"offset":30},"text":"Cannot find name 'params'.","code":2304,"category":"error"},{"start":{"line":2049,"offset":33},"end":{"line":2049,"offset":40},"text":"'IParams' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2050,"offset":41},"end":{"line":2050,"offset":55},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":50},"end":{"line":2051,"offset":64},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2051,"offset":86},"end":{"line":2051,"offset":100},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2052,"offset":42},"end":{"line":2052,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2053,"offset":42},"end":{"line":2053,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2056,"offset":12},"end":{"line":2056,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2056,"offset":37},"end":{"line":2056,"offset":51},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2058,"offset":10},"end":{"line":2058,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2067,"offset":10},"end":{"line":2067,"offset":18},"text":"Cannot find name 'setTitle'.","code":2304,"category":"error"},{"start":{"line":2067,"offset":25},"end":{"line":2067,"offset":31},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2077,"offset":10},"end":{"line":2077,"offset":18},"text":"Cannot find name 'nextLine'.","code":2304,"category":"error"},{"start":{"line":2087,"offset":10},"end":{"line":2087,"offset":31},"text":"Cannot find name 'keypadApplicationMode'.","code":2304,"category":"error"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2091,"offset":12},"end":{"line":2091,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2100,"offset":10},"end":{"line":2100,"offset":27},"text":"Cannot find name 'keypadNumericMode'.","code":2304,"category":"error"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2104,"offset":12},"end":{"line":2104,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2114,"offset":10},"end":{"line":2114,"offset":30},"text":"Cannot find name 'selectDefaultCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":10},"end":{"line":2135,"offset":23},"text":"Cannot find name 'selectCharset'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":24},"end":{"line":2135,"offset":38},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2135,"offset":40},"end":{"line":2135,"offset":46},"text":"'string' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"Parameter 'collectAndFlag' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2137,"offset":12},"end":{"line":2137,"offset":32},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2140,"offset":9},"end":{"line":2140,"offset":23},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":10},"end":{"line":2143,"offset":19},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2143,"offset":39},"end":{"line":2143,"offset":53},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2143,"offset":68},"end":{"line":2143,"offset":82},"text":"Cannot find name 'collectAndFlag'.","code":2304,"category":"error"},{"start":{"line":2153,"offset":10},"end":{"line":2153,"offset":15},"text":"Cannot find name 'index'.","code":2304,"category":"error"},{"start":{"line":2155,"offset":11},"end":{"line":2155,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2155,"offset":25},"end":{"line":2155,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2159,"offset":12},"end":{"line":2159,"offset":21},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2160,"offset":33},"end":{"line":2160,"offset":47},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2161,"offset":23},"end":{"line":2161,"offset":37},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2163,"offset":10},"end":{"line":2163,"offset":25},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2173,"offset":10},"end":{"line":2173,"offset":16},"text":"Cannot find name 'tabSet'.","code":2304,"category":"error"},{"start":{"line":2174,"offset":42},"end":{"line":2174,"offset":56},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2184,"offset":10},"end":{"line":2184,"offset":22},"text":"Cannot find name 'reverseIndex'.","code":2304,"category":"error"},{"start":{"line":2186,"offset":11},"end":{"line":2186,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2186,"offset":25},"end":{"line":2186,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"Parameter 'buffer' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2193,"offset":74},"end":{"line":2193,"offset":83},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2194,"offset":12},"end":{"line":2194,"offset":28},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2197,"offset":12},"end":{"line":2197,"offset":27},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2206,"offset":10},"end":{"line":2206,"offset":15},"text":"Cannot find name 'reset'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":10},"end":{"line":2221,"offset":19},"text":"Cannot find name 'setgLevel'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":20},"end":{"line":2221,"offset":25},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2221,"offset":27},"end":{"line":2221,"offset":33},"text":"'number' only refers to a type, but is being used as a value here.","code":2693,"category":"error"},{"start":{"line":2222,"offset":30},"end":{"line":2222,"offset":35},"text":"Cannot find name 'level'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":10},"end":{"line":2233,"offset":32},"text":"Cannot find name 'screenAlignmentPattern'.","code":2304,"category":"error"},{"start":{"line":2233,"offset":41},"end":{"line":2243,"offset":62},"text":"An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.","code":2356,"category":"error"},{"start":{"line":2235,"offset":11},"end":{"line":2235,"offset":15},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2236,"offset":5},"end":{"line":2236,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":5},"end":{"line":2237,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2237,"offset":20},"end":{"line":2237,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2238,"offset":5},"end":{"line":2238,"offset":9},"text":"No value exists in scope for the shorthand property 'cell'. Either declare one or provide an initializer.","code":18004,"category":"error"},{"start":{"line":2238,"offset":20},"end":{"line":2238,"offset":29},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2240,"offset":11},"end":{"line":2240,"offset":17},"text":"Cannot assign to 'buffer' because it is a constant.","code":2588,"category":"error"},{"start":{"line":2240,"offset":25},"end":{"line":2240,"offset":39},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"Parameter 'let' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":25},"text":"A parameter initializer is only allowed in a function or constructor implementation.","code":2371,"category":"error"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"Parameter 'yOffset' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"Parameter '(Missing)' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"A 'this' parameter must be the first parameter.","code":2680,"category":"error"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"Parameter 'this' implicitly has an 'any' type.","code":7006,"category":"error"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":72},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2244,"offset":45},"end":{"line":2244,"offset":52},"text":"Cannot find name 'yOffset'.","code":2304,"category":"error"},{"start":{"line":2245,"offset":34},"end":{"line":2245,"offset":38},"text":"Cannot find name 'cell'.","code":2304,"category":"error"},{"start":{"line":2248,"offset":10},"end":{"line":2248,"offset":26},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":2249,"offset":10},"end":{"line":2249,"offset":20},"text":"Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.","code":7017,"category":"error"},{"start":{"line":377,"offset":13},"end":{"line":377,"offset":16},"text":"expected call-signature: 'log' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":17},"end":{"line":377,"offset":17},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":5},"end":{"line":395,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":14},"end":{"line":395,"offset":17},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":27},"end":{"line":395,"offset":30},"text":"expected parameter: 'pos' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":30},"end":{"line":395,"offset":30},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":33},"end":{"line":395,"offset":36},"text":"expected parameter: 'end' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":5},"end":{"line":553,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":9},"end":{"line":553,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":5},"end":{"line":585,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":9},"end":{"line":585,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":5},"end":{"line":595,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":9},"end":{"line":595,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":5},"end":{"line":637,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":9},"end":{"line":637,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":5},"end":{"line":664,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"expected parameter: 'diffToTop' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":5},"end":{"line":678,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"expected parameter: 'diffToBottom' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":5},"end":{"line":796,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":5},"end":{"line":808,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":9},"end":{"line":808,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":5},"end":{"line":821,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":9},"end":{"line":821,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":5},"end":{"line":849,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"expected parameter: 'clearWrap' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":5},"end":{"line":880,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":5},"end":{"line":939,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":5},"end":{"line":964,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":5},"end":{"line":994,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":5},"end":{"line":1021,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1021,"offset":9},"end":{"line":1021,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":5},"end":{"line":1038,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1038,"offset":9},"end":{"line":1038,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":5},"end":{"line":1057,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":5},"end":{"line":1073,"offset":10},"text":"expected call-signature: 'while' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":5},"end":{"line":1096,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":5},"end":{"line":1124,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":5},"end":{"line":1142,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":5},"end":{"line":1160,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":5},"end":{"line":1179,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1179,"offset":9},"end":{"line":1179,"offset":13},"text":"expected parameter: 'line' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":5},"end":{"line":1212,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":9},"end":{"line":1212,"offset":9},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":10},"end":{"line":1212,"offset":14},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":5},"end":{"line":1262,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":5},"end":{"line":1272,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":5},"end":{"line":1378,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":14},"end":{"line":1378,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":21},"end":{"line":1378,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":22},"end":{"line":1378,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":25},"end":{"line":1378,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":5},"end":{"line":1390,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":14},"end":{"line":1390,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":21},"end":{"line":1390,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":22},"end":{"line":1390,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":25},"end":{"line":1390,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":5},"end":{"line":1564,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":14},"end":{"line":1564,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":21},"end":{"line":1564,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":22},"end":{"line":1564,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":25},"end":{"line":1564,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":5},"end":{"line":1576,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":14},"end":{"line":1576,"offset":15},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":21},"end":{"line":1576,"offset":22},"text":"expected parameter: 'i' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":22},"end":{"line":1576,"offset":22},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":25},"end":{"line":1576,"offset":31},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":5},"end":{"line":1793,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":5},"end":{"line":1913,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":5},"end":{"line":1930,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":5},"end":{"line":1966,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":9},"end":{"line":1966,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":5},"end":{"line":1991,"offset":11},"text":"expected call-signature: 'switch' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"expected parameter: 'param' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":5},"end":{"line":2018,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"expected parameter: 'params' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":5},"end":{"line":2055,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":9},"end":{"line":2055,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":5},"end":{"line":2090,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":9},"end":{"line":2090,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":5},"end":{"line":2103,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":9},"end":{"line":2103,"offset":13},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":5},"end":{"line":2136,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"expected parameter: 'collectAndFlag' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":5},"end":{"line":2157,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":5},"end":{"line":2187,"offset":7},"text":"expected call-signature: 'if' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"expected parameter: 'buffer' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":5},"end":{"line":2243,"offset":8},"text":"expected call-signature: 'for' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"expected parameter: 'let' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":14},"end":{"line":2243,"offset":21},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":27},"end":{"line":2243,"offset":34},"text":"expected parameter: 'yOffset' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":34},"end":{"line":2243,"offset":34},"text":"expected parameter: '' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":37},"end":{"line":2243,"offset":41},"text":"expected parameter: 'this' to have a typedef (typedef)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":12},"end":{"line":377,"offset":12},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":91},"end":{"line":377,"offset":91},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":377,"offset":92},"end":{"line":377,"offset":93},"text":"Unnecessary semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":378,"offset":92},"end":{"line":378,"offset":92},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":382,"offset":62},"end":{"line":382,"offset":62},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":40},"end":{"line":395,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":395,"offset":43},"end":{"line":395,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":88},"end":{"line":512,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":512,"offset":101},"end":{"line":512,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":101},"end":{"line":519,"offset":101},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":519,"offset":114},"end":{"line":519,"offset":114},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":73},"end":{"line":526,"offset":73},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":526,"offset":86},"end":{"line":526,"offset":86},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":75},"end":{"line":533,"offset":75},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":533,"offset":88},"end":{"line":533,"offset":88},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":541,"offset":16},"end":{"line":541,"offset":16},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":543,"offset":4},"end":{"line":543,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":549,"offset":20},"end":{"line":549,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":49},"end":{"line":553,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":575,"offset":26},"end":{"line":575,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":577,"offset":4},"end":{"line":577,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":583,"offset":21},"end":{"line":583,"offset":21},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":42},"end":{"line":585,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":594,"offset":15},"end":{"line":594,"offset":15},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":66},"end":{"line":595,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":610,"offset":20},"end":{"line":610,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":612,"offset":4},"end":{"line":612,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":619,"offset":19},"end":{"line":619,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":621,"offset":4},"end":{"line":621,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":626,"offset":28},"end":{"line":626,"offset":28},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":631,"offset":4},"end":{"line":631,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":636,"offset":43},"end":{"line":636,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":35},"end":{"line":637,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":650,"offset":44},"end":{"line":650,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":655,"offset":4},"end":{"line":655,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":661,"offset":35},"end":{"line":661,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":664,"offset":23},"end":{"line":664,"offset":23},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":675,"offset":37},"end":{"line":675,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":678,"offset":26},"end":{"line":678,"offset":26},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":689,"offset":40},"end":{"line":689,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":691,"offset":4},"end":{"line":691,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":697,"offset":41},"end":{"line":697,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":699,"offset":4},"end":{"line":699,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":706,"offset":41},"end":{"line":706,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":709,"offset":4},"end":{"line":709,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":716,"offset":46},"end":{"line":716,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":719,"offset":4},"end":{"line":719,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":725,"offset":45},"end":{"line":725,"offset":45},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":727,"offset":4},"end":{"line":727,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":733,"offset":41},"end":{"line":733,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":739,"offset":4},"end":{"line":739,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":746,"offset":42},"end":{"line":746,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":748,"offset":4},"end":{"line":748,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":755,"offset":44},"end":{"line":755,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":757,"offset":4},"end":{"line":757,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":763,"offset":42},"end":{"line":763,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":765,"offset":4},"end":{"line":765,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":772,"offset":44},"end":{"line":772,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":774,"offset":4},"end":{"line":774,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":782,"offset":37},"end":{"line":782,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":784,"offset":4},"end":{"line":784,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":794,"offset":35},"end":{"line":794,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":796,"offset":20},"end":{"line":796,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":807,"offset":43},"end":{"line":807,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":66},"end":{"line":808,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":820,"offset":44},"end":{"line":820,"offset":44},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":66},"end":{"line":821,"offset":66},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":842,"offset":96},"end":{"line":842,"offset":96},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":852,"offset":4},"end":{"line":852,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":859,"offset":38},"end":{"line":859,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":863,"offset":4},"end":{"line":863,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":877,"offset":41},"end":{"line":877,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":30},"end":{"line":880,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":881,"offset":13},"end":{"line":881,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":890,"offset":13},"end":{"line":890,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":904,"offset":13},"end":{"line":904,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":912,"offset":13},"end":{"line":912,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":937,"offset":38},"end":{"line":937,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":30},"end":{"line":939,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":940,"offset":13},"end":{"line":940,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":943,"offset":13},"end":{"line":943,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":946,"offset":13},"end":{"line":946,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":957,"offset":38},"end":{"line":957,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":71},"end":{"line":964,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":987,"offset":38},"end":{"line":987,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":71},"end":{"line":994,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1018,"offset":38},"end":{"line":1018,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1029,"offset":4},"end":{"line":1029,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1035,"offset":38},"end":{"line":1035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1046,"offset":4},"end":{"line":1046,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1051,"offset":35},"end":{"line":1051,"offset":35},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":19},"end":{"line":1057,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1067,"offset":37},"end":{"line":1067,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":19},"end":{"line":1073,"offset":19},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1094,"offset":37},"end":{"line":1094,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":71},"end":{"line":1096,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1122,"offset":38},"end":{"line":1122,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":71},"end":{"line":1124,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1140,"offset":40},"end":{"line":1140,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":71},"end":{"line":1142,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1158,"offset":40},"end":{"line":1158,"offset":40},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":71},"end":{"line":1160,"offset":71},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1176,"offset":37},"end":{"line":1176,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1187,"offset":4},"end":{"line":1187,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1211,"offset":51},"end":{"line":1211,"offset":51},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":42},"end":{"line":1212,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1261,"offset":54},"end":{"line":1261,"offset":54},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":30},"end":{"line":1262,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1271,"offset":56},"end":{"line":1271,"offset":56},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":30},"end":{"line":1272,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1377,"offset":34},"end":{"line":1377,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":43},"end":{"line":1378,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1389,"offset":41},"end":{"line":1389,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":43},"end":{"line":1390,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1563,"offset":36},"end":{"line":1563,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":43},"end":{"line":1564,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1575,"offset":43},"end":{"line":1575,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":43},"end":{"line":1576,"offset":43},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":76},"end":{"line":1658,"offset":76},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1658,"offset":84},"end":{"line":1658,"offset":84},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1791,"offset":41},"end":{"line":1791,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":55},"end":{"line":1793,"offset":55},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1912,"offset":39},"end":{"line":1912,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":30},"end":{"line":1913,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1914,"offset":13},"end":{"line":1914,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1918,"offset":13},"end":{"line":1918,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1927,"offset":46},"end":{"line":1927,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":30},"end":{"line":1930,"offset":30},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1931,"offset":13},"end":{"line":1931,"offset":13},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1937,"offset":14},"end":{"line":1937,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1941,"offset":14},"end":{"line":1941,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1945,"offset":14},"end":{"line":1945,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1949,"offset":14},"end":{"line":1949,"offset":14},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1960,"offset":36},"end":{"line":1960,"offset":36},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":33},"end":{"line":1966,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1989,"offset":41},"end":{"line":1989,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2004,"offset":6},"end":{"line":2004,"offset":6},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2014,"offset":42},"end":{"line":2014,"offset":42},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":102},"end":{"line":2018,"offset":102},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":38},"end":{"line":2035,"offset":38},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2041,"offset":4},"end":{"line":2041,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":41},"end":{"line":2049,"offset":41},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":49},"end":{"line":2055,"offset":49},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2067,"offset":32},"end":{"line":2067,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2069,"offset":4},"end":{"line":2069,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2077,"offset":20},"end":{"line":2077,"offset":20},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2080,"offset":4},"end":{"line":2080,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2087,"offset":33},"end":{"line":2087,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":33},"end":{"line":2090,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2100,"offset":29},"end":{"line":2100,"offset":29},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":33},"end":{"line":2103,"offset":33},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2114,"offset":32},"end":{"line":2114,"offset":32},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2117,"offset":4},"end":{"line":2117,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2135,"offset":47},"end":{"line":2135,"offset":47},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":37},"end":{"line":2136,"offset":37},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2153,"offset":17},"end":{"line":2153,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":46},"end":{"line":2157,"offset":46},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2173,"offset":18},"end":{"line":2173,"offset":18},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2175,"offset":4},"end":{"line":2175,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2184,"offset":24},"end":{"line":2184,"offset":24},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":39},"end":{"line":2187,"offset":39},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2206,"offset":17},"end":{"line":2206,"offset":17},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2209,"offset":4},"end":{"line":2209,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2221,"offset":34},"end":{"line":2221,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2223,"offset":4},"end":{"line":2223,"offset":4},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2233,"offset":34},"end":{"line":2233,"offset":34},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":65},"end":{"line":2243,"offset":65},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":72},"end":{"line":2243,"offset":72},"text":"Missing semicolon (semicolon)","code":1,"category":"warning","source":"tslint"},{"start":{"line":553,"offset":13},"end":{"line":553,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":585,"offset":13},"end":{"line":585,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":595,"offset":13},"end":{"line":595,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":637,"offset":13},"end":{"line":637,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":808,"offset":13},"end":{"line":808,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":821,"offset":13},"end":{"line":821,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":880,"offset":19},"end":{"line":880,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":939,"offset":19},"end":{"line":939,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":964,"offset":15},"end":{"line":964,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":994,"offset":15},"end":{"line":994,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1057,"offset":17},"end":{"line":1057,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1073,"offset":17},"end":{"line":1073,"offset":18},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1096,"offset":15},"end":{"line":1096,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1124,"offset":15},"end":{"line":1124,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1142,"offset":15},"end":{"line":1142,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1160,"offset":15},"end":{"line":1160,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1212,"offset":14},"end":{"line":1212,"offset":15},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1262,"offset":15},"end":{"line":1262,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1272,"offset":15},"end":{"line":1272,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1378,"offset":31},"end":{"line":1378,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1390,"offset":31},"end":{"line":1390,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1564,"offset":31},"end":{"line":1564,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1576,"offset":31},"end":{"line":1576,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1793,"offset":15},"end":{"line":1793,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1913,"offset":19},"end":{"line":1913,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1930,"offset":19},"end":{"line":1930,"offset":20},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":1966,"offset":13},"end":{"line":1966,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2018,"offset":15},"end":{"line":2018,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":27},"end":{"line":2035,"offset":28},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2035,"offset":28},"end":{"line":2035,"offset":29},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":30},"end":{"line":2049,"offset":31},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2049,"offset":31},"end":{"line":2049,"offset":32},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2055,"offset":13},"end":{"line":2055,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2090,"offset":13},"end":{"line":2090,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2103,"offset":13},"end":{"line":2103,"offset":14},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2136,"offset":23},"end":{"line":2136,"offset":24},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2157,"offset":15},"end":{"line":2157,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2187,"offset":15},"end":{"line":2187,"offset":16},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"},{"start":{"line":2243,"offset":41},"end":{"line":2243,"offset":42},"text":"missing whitespace (whitespace)","code":1,"category":"warning","source":"tslint"}]}}
Info 938  [11:12:10.531] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/InputHandler.ts","diagnostics":[{"start":{"line":57,"offset":8},"end":{"line":57,"offset":14},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":395,"offset":10},"end":{"line":395,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":10},"end":{"line":519,"offset":101},"text":"Unreachable code detected.","code":7027,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":519,"offset":74},"end":{"line":519,"offset":79},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":664,"offset":9},"end":{"line":664,"offset":18},"text":"'diffToTop' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":678,"offset":9},"end":{"line":678,"offset":21},"text":"'diffToBottom' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":796,"offset":9},"end":{"line":796,"offset":14},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":849,"offset":9},"end":{"line":849,"offset":18},"text":"'clearWrap' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":880,"offset":13},"end":{"line":880,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":939,"offset":13},"end":{"line":939,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":964,"offset":9},"end":{"line":964,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":994,"offset":9},"end":{"line":994,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1057,"offset":12},"end":{"line":1057,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1073,"offset":12},"end":{"line":1073,"offset":17},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1096,"offset":9},"end":{"line":1096,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1124,"offset":9},"end":{"line":1124,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1142,"offset":9},"end":{"line":1142,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1160,"offset":9},"end":{"line":1160,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1262,"offset":9},"end":{"line":1262,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1272,"offset":9},"end":{"line":1272,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1378,"offset":10},"end":{"line":1378,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1390,"offset":10},"end":{"line":1390,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1564,"offset":10},"end":{"line":1564,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1576,"offset":10},"end":{"line":1576,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1793,"offset":9},"end":{"line":1793,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1913,"offset":13},"end":{"line":1913,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1930,"offset":13},"end":{"line":1930,"offset":19},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":1991,"offset":13},"end":{"line":1991,"offset":18},"text":"'param' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2018,"offset":9},"end":{"line":2018,"offset":15},"text":"'params' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2136,"offset":9},"end":{"line":2136,"offset":23},"text":"'collectAndFlag' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2157,"offset":9},"end":{"line":2157,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2187,"offset":9},"end":{"line":2187,"offset":15},"text":"'buffer' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2243,"offset":10},"end":{"line":2243,"offset":13},"text":"'let' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}}
Info 939  [11:12:10.531] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":55}}
Info 940  [11:12:17.197] request:
    {"seq":56,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":936,"startOffset":6,"endLine":936,"endOffset":6}}
Perf 941  [11:12:17.198] 56::getApplicableRefactors: elapsed time (in milliseconds) 1.3024
Info 942  [11:12:17.198] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":56,"success":true,"body":[]}
Info 943  [11:12:17.391] request:
    {"seq":57,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","line":937,"offset":45}}
Perf 944  [11:12:17.392] 57::quickinfo: elapsed time (in milliseconds) 0.6194
Info 945  [11:12:17.392] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":57,"success":false,"message":"No content available."}
Info 946  [11:12:18.137] request:
    {"seq":58,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","line":937,"offset":35}}
Perf 947  [11:12:18.138] 58::quickinfo: elapsed time (in milliseconds) 0.6049
Info 948  [11:12:18.138] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":58,"success":false,"message":"No content available."}
Info 949  [11:12:19.699] request:
    {"seq":59,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","line":937,"offset":36}}
Perf 950  [11:12:19.700] 59::quickinfo: elapsed time (in milliseconds) 1.0361
Info 951  [11:12:19.700] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":59,"success":false,"message":"No content available."}
Info 952  [11:12:20.896] request:
    {"seq":60,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","line":937,"offset":39}}
Perf 953  [11:12:20.897] 60::quickinfo: elapsed time (in milliseconds) 0.6342
Info 954  [11:12:20.899] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":60,"success":false,"message":"No content available."}
Info 955  [11:12:21.130] request:
    {"seq":61,"type":"request","command":"quickinfo","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","line":937,"offset":40}}
Perf 956  [11:12:21.131] 61::quickinfo: elapsed time (in milliseconds) 0.6088
Info 957  [11:12:21.131] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":61,"success":false,"message":"No content available."}
Info 958  [11:12:27.866] request:
    {"seq":62,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":925,"startOffset":9,"endLine":925,"endOffset":9}}
Perf 959  [11:12:27.867] 62::getApplicableRefactors: elapsed time (in milliseconds) 0.8573
Info 960  [11:12:27.867] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":62,"success":true,"body":[]}
Info 961  [11:12:36.759] request:
    {"seq":63,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":941,"startOffset":6,"endLine":941,"endOffset":6}}
Perf 962  [11:12:36.759] 63::getApplicableRefactors: elapsed time (in milliseconds) 0.7006
Info 963  [11:12:36.760] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":63,"success":true,"body":[]}
Info 964  [11:12:37.23] request:
    {"seq":64,"type":"request","command":"getApplicableRefactors","arguments":{"file":"/home/daimms/dev/Tyriar/xterm.js/src/Terminal.ts","startLine":943,"startOffset":31,"endLine":943,"endOffset":31}}
Perf 965  [11:12:37.24] 64::getApplicableRefactors: elapsed time (in milliseconds) 0.7881
Info 966  [11:12:37.24] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":64,"success":true,"body":[]}
Info 967  [11:12:53.634] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 968  [11:12:53.635] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 969  [11:12:53.635] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 970  [11:12:53.635] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 971  [11:12:53.636] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 972  [11:12:53.637] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 973  [11:12:53.637] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 974  [11:12:53.637] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 975  [11:12:53.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 976  [11:12:53.638] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 977  [11:12:53.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 978  [11:12:53.638] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 979  [11:12:53.640] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 980  [11:12:53.640] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 981  [11:12:53.640] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 982  [11:12:53.640] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 983  [11:12:53.641] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 984  [11:12:53.641] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 985  [11:12:53.641] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 986  [11:12:53.641] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 987  [11:12:53.642] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 988  [11:12:53.642] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 989  [11:12:53.642] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 990  [11:12:53.642] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 991  [11:12:53.642] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 992  [11:12:53.642] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 993  [11:12:53.642] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 994  [11:12:53.643] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 995  [11:12:53.643] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 996  [11:12:53.643] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 997  [11:12:53.643] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 998  [11:12:53.643] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 999  [11:12:53.644] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1000 [11:12:53.644] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1001 [11:12:53.644] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1002 [11:12:53.676] Elapsed:: 32ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1003 [11:12:53.745] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1004 [11:12:53.745] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1005 [11:12:53.745] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1006 [11:12:53.773] Elapsed:: 28ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1007 [11:12:53.796] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1008 [11:12:53.796] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1009 [11:12:53.796] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1010 [11:12:53.820] Elapsed:: 24ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1011 [11:12:53.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1012 [11:12:53.847] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1013 [11:12:53.847] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1014 [11:12:53.877] Elapsed:: 30ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1015 [11:12:53.878] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1016 [11:12:53.878] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1017 [11:12:53.878] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1018 [11:12:53.900] Elapsed:: 22ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1019 [11:12:53.901] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1020 [11:12:53.901] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1021 [11:12:53.901] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1022 [11:12:53.924] Elapsed:: 23ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1023 [11:12:53.924] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1024 [11:12:53.924] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1025 [11:12:53.924] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1026 [11:12:53.945] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1027 [11:12:53.945] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1028 [11:12:53.945] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1029 [11:12:53.945] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1030 [11:12:53.966] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1031 [11:12:53.967] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1032 [11:12:53.967] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1033 [11:12:53.967] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1034 [11:12:53.985] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1035 [11:12:54.11] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1036 [11:12:54.12] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1037 [11:12:54.12] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1038 [11:12:54.32] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1039 [11:12:54.53] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1040 [11:12:54.53] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1041 [11:12:54.53] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1042 [11:12:54.80] Elapsed:: 27ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1043 [11:12:54.106] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1044 [11:12:54.106] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1045 [11:12:54.106] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1046 [11:12:54.138] Elapsed:: 32ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1047 [11:12:54.155] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1048 [11:12:54.155] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1049 [11:12:54.155] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1050 [11:12:54.178] Elapsed:: 23ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1051 [11:12:54.194] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1052 [11:12:54.194] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1053 [11:12:54.194] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1054 [11:12:54.219] Elapsed:: 25ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1055 [11:12:54.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1056 [11:12:54.233] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1057 [11:12:54.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1058 [11:12:54.248] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1059 [11:12:54.261] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1060 [11:12:54.261] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1061 [11:12:54.261] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1062 [11:12:54.279] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1063 [11:12:54.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1064 [11:12:54.292] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1065 [11:12:54.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1066 [11:12:54.315] Elapsed:: 23ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1067 [11:12:54.330] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1068 [11:12:54.330] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1069 [11:12:54.330] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1070 [11:12:54.346] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1071 [11:12:54.360] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1072 [11:12:54.360] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1073 [11:12:54.360] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1074 [11:12:54.390] Elapsed:: 30ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1075 [11:12:54.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1076 [11:12:54.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1077 [11:12:54.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1078 [11:12:54.434] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1079 [11:12:54.449] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1080 [11:12:54.449] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1081 [11:12:54.449] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1082 [11:12:54.471] Elapsed:: 22ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1083 [11:12:54.485] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1084 [11:12:54.486] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1085 [11:12:54.486] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1086 [11:12:54.510] Elapsed:: 24ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1087 [11:12:54.522] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1088 [11:12:54.522] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1089 [11:12:54.522] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1090 [11:12:54.539] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1091 [11:12:54.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1092 [11:12:54.552] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1093 [11:12:54.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1094 [11:12:54.569] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1095 [11:12:54.581] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1096 [11:12:54.582] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1097 [11:12:54.582] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1098 [11:12:54.598] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1099 [11:12:54.611] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1100 [11:12:54.611] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1101 [11:12:54.611] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1102 [11:12:54.626] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1103 [11:12:54.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1104 [11:12:54.638] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1105 [11:12:54.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1106 [11:12:54.658] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1107 [11:12:54.678] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1108 [11:12:54.678] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1109 [11:12:54.678] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1110 [11:12:54.692] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1111 [11:12:54.706] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1112 [11:12:54.707] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1113 [11:12:54.707] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1114 [11:12:54.726] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1115 [11:12:54.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1116 [11:12:54.727] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1117 [11:12:54.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1118 [11:12:54.743] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1119 [11:12:54.745] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1120 [11:12:54.745] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1121 [11:12:54.745] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1122 [11:12:54.760] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1123 [11:12:54.761] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1124 [11:12:54.761] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1125 [11:12:54.761] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1126 [11:12:54.776] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1127 [11:12:54.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1128 [11:12:54.777] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1129 [11:12:54.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1130 [11:12:54.799] Elapsed:: 22ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1131 [11:12:54.800] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1132 [11:12:54.800] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1133 [11:12:54.800] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1134 [11:12:54.820] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1135 [11:12:54.821] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1136 [11:12:54.821] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1137 [11:12:54.821] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1138 [11:12:54.836] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1139 [11:12:54.837] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1140 [11:12:54.837] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1141 [11:12:54.837] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1142 [11:12:54.853] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1143 [11:12:54.853] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1144 [11:12:54.854] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1145 [11:12:54.854] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1146 [11:12:54.871] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1147 [11:12:54.883] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1148 [11:12:54.884] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1149 [11:12:54.884] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1150 [11:12:54.899] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1151 [11:12:54.917] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1152 [11:12:54.917] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1153 [11:12:54.918] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1154 [11:12:54.933] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1155 [11:12:54.933] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1156 [11:12:54.933] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1157 [11:12:54.933] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1158 [11:12:54.949] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1159 [11:12:54.961] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1160 [11:12:54.961] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1161 [11:12:54.961] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1162 [11:12:54.978] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1163 [11:12:54.991] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1164 [11:12:54.991] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1165 [11:12:54.991] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1166 [11:12:55.6] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1167 [11:12:55.18] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1168 [11:12:55.19] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1169 [11:12:55.19] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1170 [11:12:55.35] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1171 [11:12:55.47] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1172 [11:12:55.47] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1173 [11:12:55.47] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1174 [11:12:55.63] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1175 [11:12:55.75] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1176 [11:12:55.75] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1177 [11:12:55.75] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1178 [11:12:55.91] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1179 [11:12:55.103] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1180 [11:12:55.103] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1181 [11:12:55.103] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1182 [11:12:55.126] Elapsed:: 23ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1183 [11:12:55.140] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1184 [11:12:55.140] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1185 [11:12:55.140] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1186 [11:12:55.157] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1187 [11:12:55.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1188 [11:12:55.172] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1189 [11:12:55.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1190 [11:12:55.187] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1191 [11:12:55.188] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1192 [11:12:55.188] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1193 [11:12:55.188] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1194 [11:12:55.203] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1195 [11:12:55.204] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1196 [11:12:55.204] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1197 [11:12:55.204] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1198 [11:12:55.221] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1199 [11:12:55.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1200 [11:12:55.234] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1201 [11:12:55.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1202 [11:12:55.250] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1203 [11:12:55.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1204 [11:12:55.262] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1205 [11:12:55.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1206 [11:12:55.278] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1207 [11:12:55.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1208 [11:12:55.292] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1209 [11:12:55.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1210 [11:12:55.308] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1211 [11:12:55.320] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1212 [11:12:55.320] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1213 [11:12:55.320] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1214 [11:12:55.341] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1215 [11:12:55.369] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1216 [11:12:55.369] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1217 [11:12:55.369] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1218 [11:12:55.388] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1219 [11:12:55.401] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1220 [11:12:55.401] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1221 [11:12:55.401] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1222 [11:12:55.422] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1223 [11:12:55.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1224 [11:12:55.435] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1225 [11:12:55.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1226 [11:12:55.450] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1227 [11:12:55.465] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1228 [11:12:55.465] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1229 [11:12:55.465] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1230 [11:12:55.481] Scheduled: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json
Info 1231 [11:12:55.481] Scheduled: *ensureProjectForOpenFiles*
Info 1232 [11:12:55.482] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1233 [11:12:55.494] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1234 [11:12:55.494] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1235 [11:12:55.494] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1236 [11:12:55.510] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1237 [11:12:55.523] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1238 [11:12:55.523] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1239 [11:12:55.523] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1240 [11:12:55.538] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1241 [11:12:55.539] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1242 [11:12:55.539] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1243 [11:12:55.539] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1244 [11:12:55.554] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1245 [11:12:55.570] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1246 [11:12:55.570] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1247 [11:12:55.570] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1248 [11:12:55.570] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1249 [11:12:55.571] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1250 [11:12:55.571] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1251 [11:12:55.571] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1252 [11:12:55.571] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1253 [11:12:55.571] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1254 [11:12:55.571] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1255 [11:12:55.571] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1256 [11:12:55.571] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1257 [11:12:55.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1258 [11:12:55.572] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1259 [11:12:55.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1260 [11:12:55.572] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1261 [11:12:55.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1262 [11:12:55.572] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1263 [11:12:55.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1264 [11:12:55.572] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1265 [11:12:55.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1266 [11:12:55.572] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1267 [11:12:55.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1268 [11:12:55.572] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1269 [11:12:55.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1270 [11:12:55.572] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1271 [11:12:55.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1272 [11:12:55.572] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1273 [11:12:55.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/scripts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1274 [11:12:55.574] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/scripts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1275 [11:12:55.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/scripts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1276 [11:12:55.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/scripts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1277 [11:12:55.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1278 [11:12:55.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1279 [11:12:55.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1280 [11:12:55.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1281 [11:12:55.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1282 [11:12:55.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1283 [11:12:55.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1284 [11:12:55.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1285 [11:12:55.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1286 [11:12:55.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1287 [11:12:55.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1288 [11:12:55.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1289 [11:12:55.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1290 [11:12:55.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1291 [11:12:55.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1292 [11:12:55.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1293 [11:12:55.575] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1294 [11:12:55.575] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1295 [11:12:55.575] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1296 [11:12:55.575] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1297 [11:12:55.575] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1298 [11:12:55.575] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1299 [11:12:55.575] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1300 [11:12:55.575] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1301 [11:12:55.575] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1302 [11:12:55.575] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1303 [11:12:55.575] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1304 [11:12:55.575] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1305 [11:12:55.575] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1306 [11:12:55.575] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1307 [11:12:55.575] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1308 [11:12:55.575] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1309 [11:12:55.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1310 [11:12:55.576] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1311 [11:12:55.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1312 [11:12:55.576] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1313 [11:12:55.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1314 [11:12:55.576] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1315 [11:12:55.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1316 [11:12:55.576] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1317 [11:12:55.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1318 [11:12:55.576] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1319 [11:12:55.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1320 [11:12:55.576] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1321 [11:12:55.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1322 [11:12:55.576] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1323 [11:12:55.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1324 [11:12:55.576] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1325 [11:12:55.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1326 [11:12:55.577] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1327 [11:12:55.577] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1328 [11:12:55.577] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1329 [11:12:55.577] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/es6 :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1330 [11:12:55.577] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/es6 :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1331 [11:12:55.577] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/es6 :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1332 [11:12:55.577] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/es6 :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1333 [11:12:55.577] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1334 [11:12:55.577] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1335 [11:12:55.577] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1336 [11:12:55.577] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1337 [11:12:55.577] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1338 [11:12:55.577] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1339 [11:12:55.577] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1340 [11:12:55.577] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1341 [11:12:55.577] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1342 [11:12:55.578] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1343 [11:12:55.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1344 [11:12:55.578] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1345 [11:12:55.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1346 [11:12:55.578] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1347 [11:12:55.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1348 [11:12:55.578] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1349 [11:12:55.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1350 [11:12:55.578] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1351 [11:12:55.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1352 [11:12:55.578] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1353 [11:12:55.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/types :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1354 [11:12:55.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/types :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1355 [11:12:55.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/types :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1356 [11:12:55.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/types :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1357 [11:12:55.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1358 [11:12:55.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1359 [11:12:55.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1360 [11:12:55.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1361 [11:12:55.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1362 [11:12:55.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1363 [11:12:55.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1364 [11:12:55.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1365 [11:12:55.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1366 [11:12:55.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1367 [11:12:55.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1368 [11:12:55.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1369 [11:12:55.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1370 [11:12:55.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1371 [11:12:55.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1372 [11:12:55.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1373 [11:12:55.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1374 [11:12:55.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1375 [11:12:55.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1376 [11:12:55.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1377 [11:12:55.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1378 [11:12:55.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1379 [11:12:55.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1380 [11:12:55.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1381 [11:12:55.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1382 [11:12:55.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1383 [11:12:55.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1384 [11:12:55.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1385 [11:12:55.581] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1386 [11:12:55.581] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1387 [11:12:55.581] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1388 [11:12:55.581] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1389 [11:12:55.581] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/man :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1390 [11:12:55.581] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/man :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1391 [11:12:55.581] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/man :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1392 [11:12:55.581] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/man :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1393 [11:12:55.581] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1394 [11:12:55.581] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1395 [11:12:55.581] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1396 [11:12:55.581] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1397 [11:12:55.582] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1398 [11:12:55.582] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1399 [11:12:55.582] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1400 [11:12:55.582] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1401 [11:12:55.582] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1402 [11:12:55.582] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1403 [11:12:55.582] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1404 [11:12:55.582] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1405 [11:12:55.582] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1406 [11:12:55.582] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1407 [11:12:55.582] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1408 [11:12:55.582] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1409 [11:12:55.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1410 [11:12:55.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1411 [11:12:55.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1412 [11:12:55.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1413 [11:12:55.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1414 [11:12:55.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1415 [11:12:55.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1416 [11:12:55.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1417 [11:12:55.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1418 [11:12:55.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1419 [11:12:55.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1420 [11:12:55.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1421 [11:12:55.584] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1422 [11:12:55.584] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1423 [11:12:55.584] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1424 [11:12:55.584] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1425 [11:12:55.584] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1426 [11:12:55.584] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1427 [11:12:55.584] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1428 [11:12:55.584] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1429 [11:12:55.584] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1430 [11:12:55.584] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1431 [11:12:55.584] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1432 [11:12:55.584] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1433 [11:12:55.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1434 [11:12:55.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1435 [11:12:55.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1436 [11:12:55.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1437 [11:12:55.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1438 [11:12:55.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1439 [11:12:55.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1440 [11:12:55.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1441 [11:12:55.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1442 [11:12:55.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1443 [11:12:55.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1444 [11:12:55.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1445 [11:12:55.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1446 [11:12:55.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1447 [11:12:55.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1448 [11:12:55.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1449 [11:12:55.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1450 [11:12:55.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1451 [11:12:55.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1452 [11:12:55.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1453 [11:12:55.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1454 [11:12:55.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1455 [11:12:55.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1456 [11:12:55.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1457 [11:12:55.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1458 [11:12:55.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1459 [11:12:55.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1460 [11:12:55.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1461 [11:12:55.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1462 [11:12:55.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1463 [11:12:55.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1464 [11:12:55.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1465 [11:12:55.587] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1466 [11:12:55.587] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1467 [11:12:55.587] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1468 [11:12:55.587] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1469 [11:12:55.587] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/tools :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1470 [11:12:55.587] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/tools :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1471 [11:12:55.587] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/tools :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1472 [11:12:55.587] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/tools :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1473 [11:12:55.588] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1474 [11:12:55.588] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1475 [11:12:55.588] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1476 [11:12:55.588] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1477 [11:12:55.588] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1478 [11:12:55.588] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1479 [11:12:55.588] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1480 [11:12:55.588] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1481 [11:12:55.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/loc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1482 [11:12:55.589] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/loc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1483 [11:12:55.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/loc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1484 [11:12:55.589] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/loc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1485 [11:12:55.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/ansi-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1486 [11:12:55.589] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/ansi-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1487 [11:12:55.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/ansi-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1488 [11:12:55.605] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/ansi-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1489 [11:12:55.613] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/append-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1490 [11:12:55.613] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/append-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1491 [11:12:55.613] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/append-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1492 [11:12:55.636] Elapsed:: 23ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/append-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1493 [11:12:55.644] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1494 [11:12:55.644] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1495 [11:12:55.644] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1496 [11:12:55.670] Elapsed:: 26ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1497 [11:12:55.674] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/arrify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1498 [11:12:55.674] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/arrify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1499 [11:12:55.674] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/arrify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1500 [11:12:55.692] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/arrify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1501 [11:12:55.695] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1502 [11:12:55.695] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1503 [11:12:55.695] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1504 [11:12:55.719] Elapsed:: 24ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1505 [11:12:55.723] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/balanced-match :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1506 [11:12:55.723] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/balanced-match :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1507 [11:12:55.723] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/balanced-match :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1508 [11:12:55.738] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/balanced-match :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1509 [11:12:55.741] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/brace-expansion :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1510 [11:12:55.741] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/brace-expansion :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1511 [11:12:55.741] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/brace-expansion :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1512 [11:12:55.756] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/brace-expansion :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1513 [11:12:55.759] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/caching-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1514 [11:12:55.759] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/caching-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1515 [11:12:55.759] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/caching-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1516 [11:12:55.777] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/caching-transform :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1517 [11:12:55.781] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/camelcase :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1518 [11:12:55.781] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/camelcase :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1519 [11:12:55.781] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/camelcase :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1520 [11:12:55.803] Elapsed:: 22ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/camelcase :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1521 [11:12:55.809] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commander :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1522 [11:12:55.810] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commander :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1523 [11:12:55.810] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commander :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1524 [11:12:55.833] Elapsed:: 23ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commander :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1525 [11:12:55.836] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/code-point-at :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1526 [11:12:55.836] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/code-point-at :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1527 [11:12:55.836] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/code-point-at :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1528 [11:12:55.854] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/code-point-at :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1529 [11:12:55.858] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1530 [11:12:55.858] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1531 [11:12:55.858] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1532 [11:12:55.872] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1533 [11:12:55.875] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cliui :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1534 [11:12:55.875] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cliui :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1535 [11:12:55.875] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cliui :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1536 [11:12:55.891] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cliui :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1537 [11:12:55.894] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1538 [11:12:55.894] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1539 [11:12:55.894] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1540 [11:12:55.910] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1541 [11:12:55.914] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/convert-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1542 [11:12:55.914] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/convert-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1543 [11:12:55.914] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/convert-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1544 [11:12:55.929] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/convert-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1545 [11:12:55.932] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cross-spawn :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1546 [11:12:55.932] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cross-spawn :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1547 [11:12:55.932] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cross-spawn :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1548 [11:12:55.947] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cross-spawn :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1549 [11:12:55.950] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1550 [11:12:55.950] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1551 [11:12:55.950] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1552 [11:12:55.966] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1553 [11:12:55.971] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/default-require-extensions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1554 [11:12:55.971] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/default-require-extensions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1555 [11:12:55.971] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/default-require-extensions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1556 [11:12:55.986] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/default-require-extensions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1557 [11:12:55.990] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/decamelize :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1558 [11:12:55.990] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/decamelize :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1559 [11:12:55.990] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/decamelize :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1560 [11:12:56.4] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/decamelize :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1561 [11:12:56.7] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/error-ex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1562 [11:12:56.7] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/error-ex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1563 [11:12:56.7] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/error-ex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1564 [11:12:56.22] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/error-ex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1565 [11:12:56.25] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/end-of-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1566 [11:12:56.25] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/end-of-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1567 [11:12:56.25] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/end-of-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1568 [11:12:56.40] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/end-of-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1569 [11:12:56.43] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1570 [11:12:56.43] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1571 [11:12:56.43] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1572 [11:12:56.58] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1573 [11:12:56.62] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1574 [11:12:56.62] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1575 [11:12:56.62] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1576 [11:12:56.80] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1577 [11:12:56.83] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/find-cache-dir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1578 [11:12:56.83] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/find-cache-dir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1579 [11:12:56.83] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/find-cache-dir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1580 [11:12:56.104] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/find-cache-dir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1581 [11:12:56.107] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/find-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1582 [11:12:56.108] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/find-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1583 [11:12:56.108] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/find-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1584 [11:12:56.123] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/find-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1585 [11:12:56.126] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/fs.realpath :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1586 [11:12:56.126] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/fs.realpath :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1587 [11:12:56.126] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/fs.realpath :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1588 [11:12:56.141] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/fs.realpath :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1589 [11:12:56.144] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/foreground-child :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1590 [11:12:56.144] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/foreground-child :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1591 [11:12:56.144] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/foreground-child :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1592 [11:12:56.170] Elapsed:: 26ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/foreground-child :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1593 [11:12:56.174] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/get-caller-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1594 [11:12:56.175] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/get-caller-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1595 [11:12:56.175] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/get-caller-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1596 [11:12:56.189] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/get-caller-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1597 [11:12:56.192] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/get-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1598 [11:12:56.192] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/get-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1599 [11:12:56.192] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/get-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1600 [11:12:56.207] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/get-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1601 [11:12:56.210] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/graceful-fs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1602 [11:12:56.210] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/graceful-fs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1603 [11:12:56.210] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/graceful-fs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1604 [11:12:56.226] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/graceful-fs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1605 [11:12:56.229] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/has-flag :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1606 [11:12:56.229] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/has-flag :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1607 [11:12:56.229] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/has-flag :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1608 [11:12:56.248] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/has-flag :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1609 [11:12:56.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1610 [11:12:56.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1611 [11:12:56.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1612 [11:12:56.267] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1613 [11:12:56.270] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/hasha :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1614 [11:12:56.270] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/hasha :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1615 [11:12:56.270] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/hasha :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1616 [11:12:56.285] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/hasha :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1617 [11:12:56.289] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/hosted-git-info :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1618 [11:12:56.289] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/hosted-git-info :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1619 [11:12:56.289] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/hosted-git-info :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1620 [11:12:56.303] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/hosted-git-info :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1621 [11:12:56.306] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/imurmurhash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1622 [11:12:56.306] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/imurmurhash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1623 [11:12:56.306] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/imurmurhash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1624 [11:12:56.321] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/imurmurhash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1625 [11:12:56.324] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/inflight :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1626 [11:12:56.324] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/inflight :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1627 [11:12:56.324] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/inflight :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1628 [11:12:56.340] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/inflight :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1629 [11:12:56.343] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/inherits :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1630 [11:12:56.343] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/inherits :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1631 [11:12:56.343] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/inherits :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1632 [11:12:56.359] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/inherits :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1633 [11:12:56.362] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-fullwidth-code-point :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1634 [11:12:56.362] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-fullwidth-code-point :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1635 [11:12:56.362] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-fullwidth-code-point :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1636 [11:12:56.376] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-fullwidth-code-point :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1637 [11:12:56.380] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-arrayish :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1638 [11:12:56.380] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-arrayish :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1639 [11:12:56.380] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-arrayish :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1640 [11:12:56.395] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-arrayish :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1641 [11:12:56.398] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1642 [11:12:56.398] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1643 [11:12:56.398] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1644 [11:12:56.413] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/is-stream :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1645 [11:12:56.416] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/isexe :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1646 [11:12:56.416] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/isexe :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1647 [11:12:56.416] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/isexe :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1648 [11:12:56.432] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/isexe :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1649 [11:12:56.436] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-coverage :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1650 [11:12:56.436] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-coverage :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1651 [11:12:56.436] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-coverage :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1652 [11:12:56.451] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-coverage :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1653 [11:12:56.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-hook :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1654 [11:12:56.454] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-hook :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1655 [11:12:56.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-hook :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1656 [11:12:56.470] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-hook :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1657 [11:12:56.475] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1658 [11:12:56.475] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1659 [11:12:56.475] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1660 [11:12:56.489] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1661 [11:12:56.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/invert-kv :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1662 [11:12:56.493] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/invert-kv :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1663 [11:12:56.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/invert-kv :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1664 [11:12:56.509] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/invert-kv :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1665 [11:12:56.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1666 [11:12:56.512] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1667 [11:12:56.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1668 [11:12:56.536] Elapsed:: 24ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1669 [11:12:56.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-reports :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1670 [11:12:56.541] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-reports :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1671 [11:12:56.541] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-reports :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1672 [11:12:56.555] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-reports :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1673 [11:12:56.558] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/json-parse-better-errors :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1674 [11:12:56.558] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/json-parse-better-errors :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1675 [11:12:56.558] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/json-parse-better-errors :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1676 [11:12:56.575] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/json-parse-better-errors :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1677 [11:12:56.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lcid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1678 [11:12:56.579] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lcid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1679 [11:12:56.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lcid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1680 [11:12:56.593] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lcid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1681 [11:12:56.596] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/load-json-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1682 [11:12:56.596] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/load-json-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1683 [11:12:56.596] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/load-json-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1684 [11:12:56.615] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/load-json-file :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1685 [11:12:56.618] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/locate-path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1686 [11:12:56.618] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/locate-path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1687 [11:12:56.618] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/locate-path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1688 [11:12:56.636] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/locate-path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1689 [11:12:56.640] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash.flattendeep :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1690 [11:12:56.641] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash.flattendeep :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1691 [11:12:56.641] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash.flattendeep :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1692 [11:12:56.656] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash.flattendeep :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1693 [11:12:56.659] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lru-cache :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1694 [11:12:56.659] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lru-cache :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1695 [11:12:56.659] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lru-cache :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1696 [11:12:56.675] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lru-cache :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1697 [11:12:56.678] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/map-age-cleaner :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1698 [11:12:56.678] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/map-age-cleaner :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1699 [11:12:56.678] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/map-age-cleaner :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1700 [11:12:56.693] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/map-age-cleaner :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1701 [11:12:56.696] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1702 [11:12:56.696] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1703 [11:12:56.696] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1704 [11:12:56.711] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1705 [11:12:56.714] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mem :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1706 [11:12:56.714] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mem :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1707 [11:12:56.714] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mem :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1708 [11:12:56.731] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mem :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1709 [11:12:56.736] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/merge-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1710 [11:12:56.736] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/merge-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1711 [11:12:56.736] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/merge-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1712 [11:12:56.766] Elapsed:: 30ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/merge-source-map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1713 [11:12:56.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mimic-fn :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1714 [11:12:56.769] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mimic-fn :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1715 [11:12:56.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mimic-fn :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1716 [11:12:56.784] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mimic-fn :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1717 [11:12:56.787] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimatch :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1718 [11:12:56.787] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimatch :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1719 [11:12:56.787] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimatch :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1720 [11:12:56.805] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimatch :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1721 [11:12:56.808] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1722 [11:12:56.808] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1723 [11:12:56.808] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1724 [11:12:56.823] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1725 [11:12:56.826] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1726 [11:12:56.826] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1727 [11:12:56.826] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1728 [11:12:56.847] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1729 [11:12:56.850] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/ms :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1730 [11:12:56.850] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/ms :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1731 [11:12:56.850] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/ms :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1732 [11:12:56.864] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/ms :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1733 [11:12:56.867] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/nice-try :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1734 [11:12:56.867] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/nice-try :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1735 [11:12:56.867] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/nice-try :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1736 [11:12:56.882] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/nice-try :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1737 [11:12:56.885] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/normalize-package-data :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1738 [11:12:56.885] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/normalize-package-data :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1739 [11:12:56.885] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/normalize-package-data :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1740 [11:12:56.900] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/normalize-package-data :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1741 [11:12:56.903] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/npm-run-path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1742 [11:12:56.903] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/npm-run-path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1743 [11:12:56.903] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/npm-run-path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1744 [11:12:56.918] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/npm-run-path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1745 [11:12:56.921] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/number-is-nan :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1746 [11:12:56.921] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/number-is-nan :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1747 [11:12:56.922] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/number-is-nan :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1748 [11:12:56.936] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/number-is-nan :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1749 [11:12:56.940] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/once :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1750 [11:12:56.940] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/once :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1751 [11:12:56.940] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/once :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1752 [11:12:56.954] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/once :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1753 [11:12:56.958] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1754 [11:12:56.958] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1755 [11:12:56.958] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1756 [11:12:56.975] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1757 [11:12:56.978] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/os-homedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1758 [11:12:56.978] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/os-homedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1759 [11:12:56.978] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/os-homedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1760 [11:12:56.993] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/os-homedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1761 [11:12:56.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/os-locale :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1762 [11:12:56.996] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/os-locale :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1763 [11:12:56.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/os-locale :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1764 [11:12:57.11] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/os-locale :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1765 [11:12:57.17] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-defer :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1766 [11:12:57.17] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-defer :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1767 [11:12:57.17] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-defer :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1768 [11:12:57.41] Elapsed:: 24ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-defer :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1769 [11:12:57.44] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-finally :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1770 [11:12:57.45] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-finally :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1771 [11:12:57.45] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-finally :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1772 [11:12:57.65] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-finally :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1773 [11:12:57.72] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-is-promise :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1774 [11:12:57.72] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-is-promise :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1775 [11:12:57.72] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-is-promise :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1776 [11:12:57.92] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-is-promise :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1777 [11:12:57.95] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-limit :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1778 [11:12:57.95] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-limit :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1779 [11:12:57.95] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-limit :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1780 [11:12:57.121] Elapsed:: 26ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-limit :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1781 [11:12:57.127] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-locate :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1782 [11:12:57.127] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-locate :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1783 [11:12:57.127] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-locate :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1784 [11:12:57.143] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-locate :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1785 [11:12:57.148] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-try :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1786 [11:12:57.148] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-try :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1787 [11:12:57.148] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-try :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1788 [11:12:57.165] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/p-try :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1789 [11:12:57.168] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/package-hash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1790 [11:12:57.168] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/package-hash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1791 [11:12:57.168] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/package-hash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1792 [11:12:57.185] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/package-hash :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1793 [11:12:57.189] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/parse-json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1794 [11:12:57.189] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/parse-json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1795 [11:12:57.189] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/parse-json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1796 [11:12:57.203] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/parse-json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1797 [11:12:57.207] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-exists :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1798 [11:12:57.207] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-exists :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1799 [11:12:57.207] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-exists :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1800 [11:12:57.228] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-exists :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1801 [11:12:57.231] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-is-absolute :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1802 [11:12:57.231] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-is-absolute :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1803 [11:12:57.231] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-is-absolute :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1804 [11:12:57.248] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-is-absolute :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1805 [11:12:57.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-key :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1806 [11:12:57.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-key :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1807 [11:12:57.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-key :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1808 [11:12:57.265] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-key :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1809 [11:12:57.270] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1810 [11:12:57.270] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1811 [11:12:57.270] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1812 [11:12:57.285] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1813 [11:12:57.291] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-type :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1814 [11:12:57.292] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-type :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1815 [11:12:57.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-type :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1816 [11:12:57.309] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/path-type :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1817 [11:12:57.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1818 [11:12:57.312] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1819 [11:12:57.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1820 [11:12:57.327] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pify :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1821 [11:12:57.330] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pkg-dir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1822 [11:12:57.330] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pkg-dir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1823 [11:12:57.330] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pkg-dir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1824 [11:12:57.347] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pkg-dir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1825 [11:12:57.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pseudomap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1826 [11:12:57.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pseudomap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1827 [11:12:57.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pseudomap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1828 [11:12:57.367] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pseudomap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1829 [11:12:57.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pump :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1830 [11:12:57.370] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pump :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1831 [11:12:57.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pump :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1832 [11:12:57.386] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pump :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1833 [11:12:57.389] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/read-pkg :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1834 [11:12:57.389] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/read-pkg :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1835 [11:12:57.389] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/read-pkg :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1836 [11:12:57.404] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/read-pkg :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1837 [11:12:57.407] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/read-pkg-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1838 [11:12:57.407] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/read-pkg-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1839 [11:12:57.407] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/read-pkg-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1840 [11:12:57.423] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/read-pkg-up :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1841 [11:12:57.426] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/release-zalgo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1842 [11:12:57.426] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/release-zalgo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1843 [11:12:57.426] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/release-zalgo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1844 [11:12:57.443] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/release-zalgo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1845 [11:12:57.446] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve-from :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1846 [11:12:57.446] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve-from :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1847 [11:12:57.446] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve-from :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1848 [11:12:57.462] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve-from :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1849 [11:12:57.465] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/require-main-filename :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1850 [11:12:57.465] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/require-main-filename :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1851 [11:12:57.465] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/require-main-filename :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1852 [11:12:57.490] Elapsed:: 25ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/require-main-filename :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1853 [11:12:57.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/rimraf :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1854 [11:12:57.493] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/rimraf :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1855 [11:12:57.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/rimraf :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1856 [11:12:57.509] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/rimraf :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1857 [11:12:57.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/require-directory :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1858 [11:12:57.512] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/require-directory :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1859 [11:12:57.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/require-directory :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1860 [11:12:57.536] Elapsed:: 24ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/require-directory :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1861 [11:12:57.542] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/safe-buffer :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1862 [11:12:57.542] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/safe-buffer :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1863 [11:12:57.542] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/safe-buffer :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1864 [11:12:57.562] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/safe-buffer :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1865 [11:12:57.565] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/semver :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1866 [11:12:57.565] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/semver :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1867 [11:12:57.565] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/semver :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1868 [11:12:57.579] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/semver :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1869 [11:12:57.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1870 [11:12:57.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1871 [11:12:57.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1872 [11:12:57.600] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1873 [11:12:57.603] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/shebang-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1874 [11:12:57.604] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/shebang-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1875 [11:12:57.604] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/shebang-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1876 [11:12:57.621] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/shebang-regex :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1877 [11:12:57.625] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/shebang-command :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1878 [11:12:57.625] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/shebang-command :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1879 [11:12:57.625] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/shebang-command :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1880 [11:12:57.650] Elapsed:: 25ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/shebang-command :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1881 [11:12:57.656] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spawn-wrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1882 [11:12:57.656] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spawn-wrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1883 [11:12:57.656] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spawn-wrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1884 [11:12:57.678] Elapsed:: 22ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spawn-wrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1885 [11:12:57.685] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/signal-exit :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1886 [11:12:57.685] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/signal-exit :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1887 [11:12:57.685] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/signal-exit :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1888 [11:12:57.704] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/signal-exit :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1889 [11:12:57.711] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-exceptions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1890 [11:12:57.711] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-exceptions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1891 [11:12:57.711] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-exceptions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1892 [11:12:57.732] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-exceptions :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1893 [11:12:57.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-correct :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1894 [11:12:57.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-correct :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1895 [11:12:57.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-correct :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1896 [11:12:57.758] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-correct :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1897 [11:12:57.763] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-license-ids :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1898 [11:12:57.764] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-license-ids :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1899 [11:12:57.764] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-license-ids :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1900 [11:12:57.789] Elapsed:: 25ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-license-ids :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1901 [11:12:57.792] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/string-width :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1902 [11:12:57.792] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/string-width :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1903 [11:12:57.792] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/string-width :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1904 [11:12:57.807] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/string-width :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1905 [11:12:57.811] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/set-blocking :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1906 [11:12:57.811] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/set-blocking :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1907 [11:12:57.811] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/set-blocking :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1908 [11:12:57.826] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/set-blocking :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1909 [11:12:57.829] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-expression-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1910 [11:12:57.829] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-expression-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1911 [11:12:57.829] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-expression-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1912 [11:12:57.844] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spdx-expression-parse :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1913 [11:12:57.851] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1914 [11:12:57.851] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1915 [11:12:57.851] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1916 [11:12:57.866] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1917 [11:12:57.870] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-bom :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1918 [11:12:57.870] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-bom :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1919 [11:12:57.870] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-bom :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1920 [11:12:57.887] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-bom :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1921 [11:12:57.890] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-eof :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1922 [11:12:57.890] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-eof :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1923 [11:12:57.890] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-eof :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1924 [11:12:57.905] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/strip-eof :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1925 [11:12:57.909] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/test-exclude :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1926 [11:12:57.909] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/test-exclude :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1927 [11:12:57.909] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/test-exclude :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1928 [11:12:57.928] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/test-exclude :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1929 [11:12:57.934] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1930 [11:12:57.934] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1931 [11:12:57.934] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1932 [11:12:57.950] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1933 [11:12:57.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1934 [11:12:57.955] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1935 [11:12:57.955] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1936 [11:12:57.971] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1937 [11:12:57.978] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/validate-npm-package-license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1938 [11:12:57.979] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/validate-npm-package-license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1939 [11:12:57.979] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/validate-npm-package-license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1940 [11:12:57.996] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/validate-npm-package-license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1941 [11:12:57.999] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1942 [11:12:58.0] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1943 [11:12:58.0] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1944 [11:12:58.15] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1945 [11:12:58.18] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which-module :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1946 [11:12:58.18] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which-module :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1947 [11:12:58.18] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which-module :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1948 [11:12:58.35] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which-module :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1949 [11:12:58.39] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1950 [11:12:58.39] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1951 [11:12:58.39] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1952 [11:12:58.59] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1953 [11:12:58.62] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrap-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1954 [11:12:58.62] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrap-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1955 [11:12:58.62] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrap-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1956 [11:12:58.84] Elapsed:: 22ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrap-ansi :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1957 [11:12:58.91] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrappy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1958 [11:12:58.91] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrappy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1959 [11:12:58.91] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrappy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1960 [11:12:58.119] Elapsed:: 28ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrappy :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1961 [11:12:58.126] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/write-file-atomic :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1962 [11:12:58.126] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/write-file-atomic :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1963 [11:12:58.126] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/write-file-atomic :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1964 [11:12:58.144] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/write-file-atomic :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1965 [11:12:58.148] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/y18n :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1966 [11:12:58.148] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/y18n :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1967 [11:12:58.148] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/y18n :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1968 [11:12:58.169] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/y18n :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1969 [11:12:58.173] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yallist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1970 [11:12:58.173] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yallist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1971 [11:12:58.173] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yallist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1972 [11:12:58.189] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yallist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1973 [11:12:58.192] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1974 [11:12:58.192] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1975 [11:12:58.192] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1976 [11:12:58.207] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1977 [11:12:58.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs-parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1978 [11:12:58.211] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs-parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1979 [11:12:58.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs-parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1980 [11:12:58.229] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs-parser :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1981 [11:12:58.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/path/inference :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1982 [11:12:58.233] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/path/inference :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1983 [11:12:58.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/path/inference :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1984 [11:12:58.233] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/path/inference :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1985 [11:12:58.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/path/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1986 [11:12:58.233] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/path/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1987 [11:12:58.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/path/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1988 [11:12:58.233] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/path/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1989 [11:12:58.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/scope/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1990 [11:12:58.233] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/scope/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1991 [11:12:58.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/scope/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1992 [11:12:58.234] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/scope/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1993 [11:12:58.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/asserts/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1994 [11:12:58.234] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/asserts/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1995 [11:12:58.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/asserts/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1996 [11:12:58.234] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/asserts/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 1997 [11:12:58.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1998 [11:12:58.234] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 1999 [11:12:58.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2000 [11:12:58.234] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2001 [11:12:58.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2002 [11:12:58.235] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2003 [11:12:58.235] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2004 [11:12:58.235] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2005 [11:12:58.235] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2006 [11:12:58.235] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2007 [11:12:58.235] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2008 [11:12:58.235] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/builders/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2009 [11:12:58.235] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/constants/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2010 [11:12:58.235] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/constants/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2011 [11:12:58.235] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/constants/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2012 [11:12:58.235] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/constants/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2013 [11:12:58.235] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/modifications/flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2014 [11:12:58.235] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/modifications/flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2015 [11:12:58.235] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/modifications/flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2016 [11:12:58.235] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/modifications/flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2017 [11:12:58.236] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/utils/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2018 [11:12:58.236] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/utils/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2019 [11:12:58.236] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/utils/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2020 [11:12:58.236] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/utils/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2021 [11:12:58.236] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/validators/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2022 [11:12:58.236] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/validators/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2023 [11:12:58.236] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/validators/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2024 [11:12:58.236] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/validators/generated :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2025 [11:12:58.237] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/validators/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2026 [11:12:58.237] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/validators/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2027 [11:12:58.237] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/validators/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2028 [11:12:58.237] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/validators/react :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2029 [11:12:58.237] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/loc/lcl :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2030 [11:12:58.237] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/loc/lcl :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2031 [11:12:58.237] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/loc/lcl :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2032 [11:12:58.237] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/loc/lcl :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2033 [11:12:58.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/decorators :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2034 [11:12:58.243] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/decorators :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2035 [11:12:58.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/decorators :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2036 [11:12:58.243] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/decorators :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2037 [11:12:58.244] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/compiler :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2038 [11:12:58.244] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/compiler :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2039 [11:12:58.244] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/compiler :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2040 [11:12:58.244] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/compiler :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2041 [11:12:58.244] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/helpers :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2042 [11:12:58.244] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/helpers :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2043 [11:12:58.244] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/helpers :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2044 [11:12:58.244] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/lib/handlebars/helpers :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2045 [11:12:58.244] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist/amd/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2046 [11:12:58.244] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist/amd/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2047 [11:12:58.244] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist/amd/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2048 [11:12:58.244] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist/amd/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2049 [11:12:58.245] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist/cjs/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2050 [11:12:58.245] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist/cjs/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2051 [11:12:58.245] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist/cjs/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2052 [11:12:58.245] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/dist/cjs/handlebars :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2053 [11:12:58.245] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib/html/assets :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2054 [11:12:58.245] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib/html/assets :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2055 [11:12:58.245] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib/html/assets :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2056 [11:12:58.245] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib/html/assets :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2057 [11:12:58.245] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib/html/templates :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2058 [11:12:58.245] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib/html/templates :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2059 [11:12:58.245] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib/html/templates :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2060 [11:12:58.245] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/lib/html/templates :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2061 [11:12:58.246] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2062 [11:12:58.246] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2063 [11:12:58.246] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2064 [11:12:58.246] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2065 [11:12:58.246] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2066 [11:12:58.246] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2067 [11:12:58.246] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2068 [11:12:58.246] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/archy/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2069 [11:12:58.246] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2070 [11:12:58.246] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2071 [11:12:58.246] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2072 [11:12:58.246] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2073 [11:12:58.247] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async/internal :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2074 [11:12:58.247] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async/internal :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2075 [11:12:58.247] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async/internal :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2076 [11:12:58.247] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/async/internal :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2077 [11:12:58.247] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commander/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2078 [11:12:58.247] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commander/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2079 [11:12:58.247] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commander/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2080 [11:12:58.247] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commander/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2081 [11:12:58.248] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2082 [11:12:58.248] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2083 [11:12:58.248] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2084 [11:12:58.248] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2085 [11:12:58.248] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2086 [11:12:58.248] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2087 [11:12:58.248] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2088 [11:12:58.248] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/commondir/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2089 [11:12:58.248] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2090 [11:12:58.248] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2091 [11:12:58.248] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2092 [11:12:58.248] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2093 [11:12:58.248] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2094 [11:12:58.248] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2095 [11:12:58.248] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2096 [11:12:58.248] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/concat-map/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2097 [11:12:58.249] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cross-spawn/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2098 [11:12:58.249] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cross-spawn/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2099 [11:12:58.249] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cross-spawn/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2100 [11:12:58.249] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/cross-spawn/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2101 [11:12:58.249] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2102 [11:12:58.249] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2103 [11:12:58.249] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2104 [11:12:58.249] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2105 [11:12:58.249] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2106 [11:12:58.249] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2107 [11:12:58.249] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2108 [11:12:58.249] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/debug/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2109 [11:12:58.249] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/es6 :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2110 [11:12:58.249] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/es6 :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2111 [11:12:58.249] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/es6 :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2112 [11:12:58.250] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/es6 :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2113 [11:12:58.250] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2114 [11:12:58.250] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2115 [11:12:58.250] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2116 [11:12:58.250] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2117 [11:12:58.250] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2118 [11:12:58.250] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2119 [11:12:58.250] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2120 [11:12:58.250] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/es6-error/typings :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2121 [11:12:58.250] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2122 [11:12:58.250] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2123 [11:12:58.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2124 [11:12:58.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2125 [11:12:58.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2126 [11:12:58.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2127 [11:12:58.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2128 [11:12:58.279] Elapsed:: 28ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/execa/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2129 [11:12:58.279] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2130 [11:12:58.279] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2131 [11:12:58.279] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2132 [11:12:58.279] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2133 [11:12:58.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2134 [11:12:58.281] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2135 [11:12:58.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2136 [11:12:58.281] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2137 [11:12:58.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2138 [11:12:58.281] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2139 [11:12:58.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2140 [11:12:58.281] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2141 [11:12:58.282] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2142 [11:12:58.282] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2143 [11:12:58.282] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2144 [11:12:58.297] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/handlebars/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2145 [11:12:58.297] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/isexe/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2146 [11:12:58.297] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/isexe/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2147 [11:12:58.297] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/isexe/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2148 [11:12:58.297] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/isexe/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2149 [11:12:58.297] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-coverage/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2150 [11:12:58.297] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-coverage/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2151 [11:12:58.298] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-coverage/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2152 [11:12:58.298] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-coverage/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2153 [11:12:58.298] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-hook/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2154 [11:12:58.298] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-hook/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2155 [11:12:58.298] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-hook/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2156 [11:12:58.298] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-hook/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2157 [11:12:58.298] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2158 [11:12:58.298] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2159 [11:12:58.298] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2160 [11:12:58.298] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2161 [11:12:58.298] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2162 [11:12:58.298] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2163 [11:12:58.298] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2164 [11:12:58.316] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-report/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2165 [11:12:58.316] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2166 [11:12:58.316] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2167 [11:12:58.316] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2168 [11:12:58.316] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2169 [11:12:58.317] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2170 [11:12:58.317] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2171 [11:12:58.317] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2172 [11:12:58.332] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-lib-source-maps/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2173 [11:12:58.333] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-reports/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2174 [11:12:58.333] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-reports/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2175 [11:12:58.333] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-reports/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2176 [11:12:58.333] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/istanbul-reports/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2177 [11:12:58.334] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/map-age-cleaner/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2178 [11:12:58.335] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/map-age-cleaner/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2179 [11:12:58.335] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/map-age-cleaner/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2180 [11:12:58.335] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/map-age-cleaner/dist :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2181 [11:12:58.336] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2182 [11:12:58.336] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2183 [11:12:58.336] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2184 [11:12:58.336] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/lodash/fp :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2185 [11:12:58.337] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/merge-source-map/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2186 [11:12:58.337] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/merge-source-map/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2187 [11:12:58.337] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/merge-source-map/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2188 [11:12:58.352] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/merge-source-map/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2189 [11:12:58.353] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2190 [11:12:58.353] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2191 [11:12:58.353] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2192 [11:12:58.353] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2193 [11:12:58.353] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2194 [11:12:58.353] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2195 [11:12:58.353] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2196 [11:12:58.353] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/minimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2197 [11:12:58.353] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2198 [11:12:58.353] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2199 [11:12:58.353] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2200 [11:12:58.353] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2201 [11:12:58.354] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2202 [11:12:58.354] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2203 [11:12:58.354] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2204 [11:12:58.354] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/examples :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2205 [11:12:58.354] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2206 [11:12:58.354] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2207 [11:12:58.354] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2208 [11:12:58.369] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2209 [11:12:58.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2210 [11:12:58.370] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2211 [11:12:58.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2212 [11:12:58.370] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/mkdirp/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2213 [11:12:58.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/nice-try/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2214 [11:12:58.370] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/nice-try/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2215 [11:12:58.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/nice-try/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2216 [11:12:58.370] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/nice-try/src :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2217 [11:12:58.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/normalize-package-data/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2218 [11:12:58.371] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/normalize-package-data/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2219 [11:12:58.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/normalize-package-data/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2220 [11:12:58.371] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/normalize-package-data/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2221 [11:12:58.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2222 [11:12:58.371] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2223 [11:12:58.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2224 [11:12:58.371] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2225 [11:12:58.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2226 [11:12:58.371] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2227 [11:12:58.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2228 [11:12:58.371] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/optimist/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2229 [11:12:58.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pseudomap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2230 [11:12:58.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pseudomap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2231 [11:12:58.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pseudomap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2232 [11:12:58.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/pseudomap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2233 [11:12:58.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/release-zalgo/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2234 [11:12:58.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/release-zalgo/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2235 [11:12:58.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/release-zalgo/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2236 [11:12:58.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/release-zalgo/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2237 [11:12:58.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/semver/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2238 [11:12:58.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/semver/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2239 [11:12:58.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/semver/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2240 [11:12:58.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/semver/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2241 [11:12:58.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2242 [11:12:58.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2243 [11:12:58.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2244 [11:12:58.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2245 [11:12:58.375] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2246 [11:12:58.375] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2247 [11:12:58.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2248 [11:12:58.376] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2249 [11:12:58.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2250 [11:12:58.376] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2251 [11:12:58.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2252 [11:12:58.376] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/resolve/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2253 [11:12:58.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spawn-wrap/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2254 [11:12:58.376] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spawn-wrap/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2255 [11:12:58.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spawn-wrap/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2256 [11:12:58.376] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/spawn-wrap/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2257 [11:12:58.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2258 [11:12:58.376] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2259 [11:12:58.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2260 [11:12:58.376] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2261 [11:12:58.377] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2262 [11:12:58.377] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2263 [11:12:58.377] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2264 [11:12:58.393] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2265 [11:12:58.393] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/tools :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2266 [11:12:58.393] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/tools :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2267 [11:12:58.393] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/tools :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2268 [11:12:58.393] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/tools :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2269 [11:12:58.393] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2270 [11:12:58.393] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2271 [11:12:58.393] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2272 [11:12:58.393] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uglify-js/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2273 [11:12:58.393] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2274 [11:12:58.393] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2275 [11:12:58.393] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2276 [11:12:58.393] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2277 [11:12:58.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2278 [11:12:58.394] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2279 [11:12:58.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2280 [11:12:58.394] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/uuid/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2281 [11:12:58.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2282 [11:12:58.394] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2283 [11:12:58.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2284 [11:12:58.394] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/which/bin :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2285 [11:12:58.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2286 [11:12:58.394] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2287 [11:12:58.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2288 [11:12:58.394] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap/example :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2289 [11:12:58.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2290 [11:12:58.394] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2291 [11:12:58.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2292 [11:12:58.394] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wordwrap/test :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2293 [11:12:58.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrap-ansi/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2294 [11:12:58.395] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrap-ansi/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2295 [11:12:58.395] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrap-ansi/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2296 [11:12:58.410] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/wrap-ansi/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2297 [11:12:58.411] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2298 [11:12:58.411] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2299 [11:12:58.411] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2300 [11:12:58.411] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2301 [11:12:58.411] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs/locales :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2302 [11:12:58.411] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs/locales :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2303 [11:12:58.411] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs/locales :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2304 [11:12:58.411] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs/locales :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2305 [11:12:58.411] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs-parser/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2306 [11:12:58.411] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs-parser/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2307 [11:12:58.411] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs-parser/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2308 [11:12:58.411] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/yargs-parser/lib :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2309 [11:12:58.412] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/dotdot/abc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2310 [11:12:58.412] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/dotdot/abc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2311 [11:12:58.412] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/dotdot/abc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2312 [11:12:58.412] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/dotdot/abc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2313 [11:12:58.412] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/node_path/y :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2314 [11:12:58.412] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/node_path/y :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2315 [11:12:58.412] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/node_path/y :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2316 [11:12:58.412] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/node_path/y :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2317 [11:12:58.412] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/node_path/x :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2318 [11:12:58.412] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/node_path/x :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2319 [11:12:58.412] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/node_path/x :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2320 [11:12:58.412] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/node_path/x :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2321 [11:12:58.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/xmodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2322 [11:12:58.413] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/xmodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2323 [11:12:58.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/xmodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2324 [11:12:58.413] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/xmodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2325 [11:12:58.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/ymodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2326 [11:12:58.413] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/ymodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2327 [11:12:58.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/ymodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2328 [11:12:58.413] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/ymodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2329 [11:12:58.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/zmodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2330 [11:12:58.413] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/zmodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2331 [11:12:58.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/zmodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2332 [11:12:58.413] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/zmodules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2333 [11:12:58.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/precedence/bbb :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2334 [11:12:58.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/precedence/bbb :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2335 [11:12:58.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/precedence/bbb :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2336 [11:12:58.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/precedence/bbb :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2337 [11:12:58.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/pathfilter/deep_ref :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2338 [11:12:58.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/pathfilter/deep_ref :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2339 [11:12:58.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/pathfilter/deep_ref :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2340 [11:12:58.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/pathfilter/deep_ref :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2341 [11:12:58.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/precedence/aaa :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2342 [11:12:58.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/precedence/aaa :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2343 [11:12:58.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/precedence/aaa :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2344 [11:12:58.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/precedence/aaa :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2345 [11:12:58.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/browser_field :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2346 [11:12:58.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/browser_field :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2347 [11:12:58.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/browser_field :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2348 [11:12:58.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/browser_field :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2349 [11:12:58.417] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/baz :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2350 [11:12:58.417] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/baz :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2351 [11:12:58.417] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/baz :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2352 [11:12:58.417] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/baz :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2353 [11:12:58.417] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_slash_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2354 [11:12:58.417] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_slash_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2355 [11:12:58.417] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_slash_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2356 [11:12:58.417] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_slash_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2357 [11:12:58.418] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2358 [11:12:58.418] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2359 [11:12:58.418] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2360 [11:12:58.418] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2361 [11:12:58.418] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/invalid_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2362 [11:12:58.418] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/invalid_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2363 [11:12:58.418] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/invalid_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2364 [11:12:58.418] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/invalid_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2365 [11:12:58.420] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/incorrect_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2366 [11:12:58.420] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/incorrect_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2367 [11:12:58.420] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/incorrect_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2368 [11:12:58.421] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/incorrect_main :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2369 [11:12:58.421] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/multirepo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2370 [11:12:58.421] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/multirepo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2371 [11:12:58.421] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/multirepo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2372 [11:12:58.422] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/multirepo :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2373 [11:12:58.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/nested_symlinks :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2374 [11:12:58.422] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/nested_symlinks :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2375 [11:12:58.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/nested_symlinks :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2376 [11:12:58.422] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/nested_symlinks :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2377 [11:12:58.423] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/quux :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2378 [11:12:58.423] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/quux :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2379 [11:12:58.423] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/quux :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2380 [11:12:58.423] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/quux :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2381 [11:12:58.424] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/other_path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2382 [11:12:58.424] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/other_path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2383 [11:12:58.424] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/other_path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2384 [11:12:58.424] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/other_path :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2385 [11:12:58.424] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/symlinked :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2386 [11:12:58.424] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/symlinked :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2387 [11:12:58.424] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/symlinked :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2388 [11:12:58.424] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/symlinked :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2389 [11:12:58.425] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/same_names :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2390 [11:12:58.425] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/same_names :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2391 [11:12:58.425] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/same_names :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2392 [11:12:58.425] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/same_names :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2393 [11:12:58.425] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/shadowed_core/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2394 [11:12:58.426] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/shadowed_core/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2395 [11:12:58.426] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/shadowed_core/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2396 [11:12:58.445] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/shadowed_core/node_modules :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2397 [11:12:58.445] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/without_basedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2398 [11:12:58.446] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/without_basedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2399 [11:12:58.446] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/without_basedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2400 [11:12:58.446] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/test/resolver/without_basedir :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2401 [11:12:58.446] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CHS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2402 [11:12:58.446] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CHS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2403 [11:12:58.446] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CHS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2404 [11:12:58.446] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CHS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2405 [11:12:58.456] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CHT :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2406 [11:12:58.456] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CHT :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2407 [11:12:58.456] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CHT :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2408 [11:12:58.456] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CHT :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2409 [11:12:58.457] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/DEU :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2410 [11:12:58.457] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/DEU :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2411 [11:12:58.457] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/DEU :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2412 [11:12:58.457] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/DEU :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2413 [11:12:58.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/ESN :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2414 [11:12:58.458] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/ESN :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2415 [11:12:58.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/ESN :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2416 [11:12:58.458] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/ESN :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2417 [11:12:58.459] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/ITA :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2418 [11:12:58.459] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/ITA :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2419 [11:12:58.459] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/ITA :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2420 [11:12:58.459] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/ITA :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2421 [11:12:58.460] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CSY :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2422 [11:12:58.460] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CSY :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2423 [11:12:58.460] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CSY :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2424 [11:12:58.460] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/CSY :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2425 [11:12:58.461] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/FRA :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2426 [11:12:58.461] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/FRA :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2427 [11:12:58.461] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/FRA :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2428 [11:12:58.461] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/FRA :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2429 [11:12:58.462] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/PLK :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2430 [11:12:58.462] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/PLK :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2431 [11:12:58.462] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/PLK :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2432 [11:12:58.462] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/PLK :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2433 [11:12:58.463] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/KOR :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2434 [11:12:58.463] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/KOR :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2435 [11:12:58.463] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/KOR :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2436 [11:12:58.463] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/KOR :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2437 [11:12:58.464] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/PTB :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2438 [11:12:58.464] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/PTB :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2439 [11:12:58.464] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/PTB :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2440 [11:12:58.464] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/PTB :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2441 [11:12:58.465] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/RUS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2442 [11:12:58.465] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/RUS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2443 [11:12:58.465] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/RUS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2444 [11:12:58.466] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/RUS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2445 [11:12:58.466] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/TRK :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2446 [11:12:58.466] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/TRK :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2447 [11:12:58.466] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/TRK :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2448 [11:12:58.466] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/TRK :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2449 [11:12:58.467] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/JPN :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2450 [11:12:58.467] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/JPN :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2451 [11:12:58.467] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/JPN :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2452 [11:12:58.467] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/loc/lcl/JPN :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2453 [11:12:58.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2454 [11:12:58.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2455 [11:12:58.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2456 [11:12:58.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2457 [11:12:58.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2458 [11:12:58.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2459 [11:12:58.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2460 [11:12:58.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2461 [11:12:58.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2462 [11:12:58.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2463 [11:12:58.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2464 [11:12:58.481] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2465 [11:12:58.482] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2466 [11:12:58.482] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2467 [11:12:58.482] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2468 [11:12:58.482] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2469 [11:12:58.482] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2470 [11:12:58.482] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2471 [11:12:58.482] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2472 [11:12:58.482] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2473 [11:12:58.482] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2474 [11:12:58.482] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2475 [11:12:58.482] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2476 [11:12:58.482] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2477 [11:12:58.483] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2478 [11:12:58.483] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2479 [11:12:58.483] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2480 [11:12:58.491] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2481 [11:12:58.491] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2482 [11:12:58.491] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2483 [11:12:58.491] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2484 [11:12:58.491] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2485 [11:12:58.492] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2486 [11:12:58.492] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2487 [11:12:58.492] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2488 [11:12:58.492] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2489 [11:12:58.492] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2490 [11:12:58.492] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2491 [11:12:58.492] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2492 [11:12:58.504] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2493 [11:12:58.504] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2494 [11:12:58.504] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2495 [11:12:58.504] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2496 [11:12:58.504] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2497 [11:12:58.504] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2498 [11:12:58.504] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2499 [11:12:58.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2500 [11:12:58.505] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2501 [11:12:58.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2502 [11:12:58.505] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2503 [11:12:58.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2504 [11:12:58.513] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2505 [11:12:58.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2506 [11:12:58.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2507 [11:12:58.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2508 [11:12:58.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2509 [11:12:58.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2510 [11:12:58.515] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2511 [11:12:58.515] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2512 [11:12:58.515] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2513 [11:12:58.515] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2514 [11:12:58.515] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2515 [11:12:58.515] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2516 [11:12:58.528] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2517 [11:12:58.528] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2518 [11:12:58.528] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2519 [11:12:58.528] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2520 [11:12:58.528] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2521 [11:12:58.528] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2522 [11:12:58.528] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2523 [11:12:58.528] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2524 [11:12:58.528] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2525 [11:12:58.528] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2526 [11:12:58.528] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2527 [11:12:58.528] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2528 [11:12:58.540] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2529 [11:12:58.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2530 [11:12:58.540] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2531 [11:12:58.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2532 [11:12:58.541] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2533 [11:12:58.541] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2534 [11:12:58.541] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2535 [11:12:58.541] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2536 [11:12:58.541] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2537 [11:12:58.541] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2538 [11:12:58.541] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2539 [11:12:58.541] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2540 [11:12:58.553] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2541 [11:12:58.553] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2542 [11:12:58.553] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2543 [11:12:58.553] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2544 [11:12:58.567] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2545 [11:12:58.567] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2546 [11:12:58.567] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2547 [11:12:58.567] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2548 [11:12:58.567] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2549 [11:12:58.567] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2550 [11:12:58.567] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2551 [11:12:58.567] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2552 [11:12:58.579] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2553 [11:12:58.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2554 [11:12:58.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2555 [11:12:58.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2556 [11:12:58.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/append-transform/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2557 [11:12:58.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2558 [11:12:58.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2559 [11:12:58.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2560 [11:12:58.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2561 [11:12:58.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2562 [11:12:58.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2563 [11:12:58.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2564 [11:12:58.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2565 [11:12:58.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2566 [11:12:58.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2567 [11:12:58.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2568 [11:12:58.590] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2569 [11:12:58.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2570 [11:12:58.590] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2571 [11:12:58.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2572 [11:12:58.590] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2573 [11:12:58.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2574 [11:12:58.590] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2575 [11:12:58.591] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2576 [11:12:58.591] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2577 [11:12:58.591] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2578 [11:12:58.591] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2579 [11:12:58.591] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2580 [11:12:58.604] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2581 [11:12:58.604] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2582 [11:12:58.604] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2583 [11:12:58.604] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2584 [11:12:58.619] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2585 [11:12:58.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2586 [11:12:58.619] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2587 [11:12:58.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2588 [11:12:58.619] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2589 [11:12:58.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2590 [11:12:58.619] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2591 [11:12:58.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2592 [11:12:58.630] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2593 [11:12:58.630] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2594 [11:12:58.630] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2595 [11:12:58.630] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2596 [11:12:58.630] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2597 [11:12:58.630] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2598 [11:12:58.630] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2599 [11:12:58.631] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2600 [11:12:58.642] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2601 [11:12:58.642] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2602 [11:12:58.642] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2603 [11:12:58.642] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2604 [11:12:58.642] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/arrify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2605 [11:12:58.642] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2606 [11:12:58.642] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2607 [11:12:58.642] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2608 [11:12:58.643] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2609 [11:12:58.643] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2610 [11:12:58.643] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2611 [11:12:58.643] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2612 [11:12:58.643] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2613 [11:12:58.643] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2614 [11:12:58.643] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2615 [11:12:58.643] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2616 [11:12:58.643] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2617 [11:12:58.643] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2618 [11:12:58.643] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2619 [11:12:58.643] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2620 [11:12:58.652] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2621 [11:12:58.652] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/source-map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2622 [11:12:58.652] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/source-map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2623 [11:12:58.652] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/source-map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2624 [11:12:58.663] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/source-map/source-map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2625 [11:12:58.663] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2626 [11:12:58.663] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2627 [11:12:58.663] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2628 [11:12:58.663] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2629 [11:12:58.663] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2630 [11:12:58.663] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2631 [11:12:58.663] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2632 [11:12:58.663] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2633 [11:12:58.664] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2634 [11:12:58.664] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2635 [11:12:58.664] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2636 [11:12:58.673] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2637 [11:12:58.673] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2638 [11:12:58.673] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2639 [11:12:58.673] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2640 [11:12:58.673] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/debug/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2641 [11:12:58.674] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2642 [11:12:58.674] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2643 [11:12:58.674] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2644 [11:12:58.674] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2645 [11:12:58.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2646 [11:12:58.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2647 [11:12:58.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2648 [11:12:58.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2649 [11:12:58.679] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2650 [11:12:58.679] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2651 [11:12:58.679] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2652 [11:12:58.688] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2653 [11:12:58.691] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2654 [11:12:58.691] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2655 [11:12:58.691] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2656 [11:12:58.704] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2657 [11:12:58.708] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2658 [11:12:58.754] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2659 [11:12:58.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2660 [11:12:58.762] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2661 [11:12:58.765] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2662 [11:12:58.765] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2663 [11:12:58.765] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2664 [11:12:58.774] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2665 [11:12:58.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2666 [11:12:58.776] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2667 [11:12:58.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2668 [11:12:58.785] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2669 [11:12:58.788] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2670 [11:12:58.788] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2671 [11:12:58.788] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2672 [11:12:58.796] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2673 [11:12:58.799] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2674 [11:12:58.799] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2675 [11:12:58.799] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2676 [11:12:58.810] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2677 [11:12:58.814] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2678 [11:12:58.814] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2679 [11:12:58.814] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2680 [11:12:58.824] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2681 [11:12:58.829] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2682 [11:12:58.829] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2683 [11:12:58.829] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2684 [11:12:58.847] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2685 [11:12:58.852] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2686 [11:12:58.852] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2687 [11:12:58.852] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2688 [11:12:58.866] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2689 [11:12:58.870] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2690 [11:12:58.870] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2691 [11:12:58.870] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2692 [11:12:58.880] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2693 [11:12:58.885] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2694 [11:12:58.885] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2695 [11:12:58.885] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2696 [11:12:58.895] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2697 [11:12:58.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2698 [11:12:58.899] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2699 [11:12:58.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2700 [11:12:58.913] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2701 [11:12:58.919] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2702 [11:12:58.919] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2703 [11:12:58.919] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2704 [11:12:58.929] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2705 [11:12:58.931] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2706 [11:12:58.931] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2707 [11:12:58.931] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2708 [11:12:58.942] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2709 [11:12:58.945] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2710 [11:12:58.945] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2711 [11:12:58.945] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2712 [11:12:58.955] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2713 [11:12:58.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2714 [11:12:58.959] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2715 [11:12:58.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2716 [11:12:58.970] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2717 [11:12:58.973] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2718 [11:12:58.973] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2719 [11:12:58.973] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2720 [11:12:58.985] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2721 [11:12:58.989] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2722 [11:12:58.989] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2723 [11:12:58.989] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2724 [11:12:58.998] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2725 [11:12:59.3] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2726 [11:12:59.3] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2727 [11:12:59.3] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2728 [11:12:59.16] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2729 [11:12:59.22] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2730 [11:12:59.22] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2731 [11:12:59.22] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2732 [11:12:59.34] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2733 [11:12:59.36] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2734 [11:12:59.36] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2735 [11:12:59.36] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2736 [11:12:59.49] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2737 [11:12:59.54] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2738 [11:12:59.54] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2739 [11:12:59.55] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2740 [11:12:59.69] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2741 [11:12:59.73] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2742 [11:12:59.73] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2743 [11:12:59.73] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2744 [11:12:59.82] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2745 [11:12:59.86] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2746 [11:12:59.86] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2747 [11:12:59.86] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2748 [11:12:59.96] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2749 [11:12:59.98] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2750 [11:12:59.98] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2751 [11:12:59.98] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2752 [11:12:59.107] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2753 [11:12:59.109] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2754 [11:12:59.109] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2755 [11:12:59.109] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2756 [11:12:59.119] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2757 [11:12:59.123] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2758 [11:12:59.123] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2759 [11:12:59.123] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2760 [11:12:59.136] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2761 [11:12:59.139] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2762 [11:12:59.139] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2763 [11:12:59.139] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2764 [11:12:59.147] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2765 [11:12:59.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2766 [11:12:59.150] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2767 [11:12:59.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2768 [11:12:59.160] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2769 [11:12:59.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2770 [11:12:59.163] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2771 [11:12:59.163] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2772 [11:12:59.176] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2773 [11:12:59.178] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2774 [11:12:59.178] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2775 [11:12:59.178] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2776 [11:12:59.188] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2777 [11:12:59.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2778 [11:12:59.191] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2779 [11:12:59.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2780 [11:12:59.205] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2781 [11:12:59.208] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2782 [11:12:59.208] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2783 [11:12:59.208] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2784 [11:12:59.217] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2785 [11:12:59.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2786 [11:12:59.221] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2787 [11:12:59.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2788 [11:12:59.231] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2789 [11:12:59.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2790 [11:12:59.233] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2791 [11:12:59.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2792 [11:12:59.241] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2793 [11:12:59.245] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2794 [11:12:59.245] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2795 [11:12:59.245] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2796 [11:12:59.255] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2797 [11:12:59.258] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2798 [11:12:59.258] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2799 [11:12:59.258] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2800 [11:12:59.265] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2801 [11:12:59.267] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2802 [11:12:59.268] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2803 [11:12:59.268] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2804 [11:12:59.277] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2805 [11:12:59.279] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2806 [11:12:59.279] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2807 [11:12:59.279] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2808 [11:12:59.289] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2809 [11:12:59.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2810 [11:12:59.292] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2811 [11:12:59.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2812 [11:12:59.300] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2813 [11:12:59.303] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2814 [11:12:59.303] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2815 [11:12:59.303] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2816 [11:12:59.313] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2817 [11:12:59.317] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2818 [11:12:59.317] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2819 [11:12:59.317] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2820 [11:12:59.329] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2821 [11:12:59.333] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2822 [11:12:59.333] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2823 [11:12:59.333] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2824 [11:12:59.350] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2825 [11:12:59.355] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2826 [11:12:59.355] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2827 [11:12:59.355] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2828 [11:12:59.369] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2829 [11:12:59.373] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2830 [11:12:59.373] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2831 [11:12:59.373] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2832 [11:12:59.384] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2833 [11:12:59.387] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2834 [11:12:59.387] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2835 [11:12:59.387] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2836 [11:12:59.400] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2837 [11:12:59.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2838 [11:12:59.405] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2839 [11:12:59.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2840 [11:12:59.413] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2841 [11:12:59.415] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2842 [11:12:59.415] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2843 [11:12:59.415] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2844 [11:12:59.424] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2845 [11:12:59.426] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2846 [11:12:59.427] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2847 [11:12:59.427] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2848 [11:12:59.434] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2849 [11:12:59.437] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2850 [11:12:59.437] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2851 [11:12:59.437] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2852 [11:12:59.444] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2853 [11:12:59.447] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2854 [11:12:59.447] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2855 [11:12:59.447] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2856 [11:12:59.456] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2857 [11:12:59.459] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2858 [11:12:59.459] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2859 [11:12:59.459] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2860 [11:12:59.467] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2861 [11:12:59.470] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2862 [11:12:59.470] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2863 [11:12:59.470] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2864 [11:12:59.482] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2865 [11:12:59.486] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2866 [11:12:59.486] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2867 [11:12:59.486] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2868 [11:12:59.499] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2869 [11:12:59.503] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2870 [11:12:59.503] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2871 [11:12:59.503] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2872 [11:12:59.512] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2873 [11:12:59.516] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2874 [11:12:59.516] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2875 [11:12:59.516] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2876 [11:12:59.523] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2877 [11:12:59.526] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2878 [11:12:59.526] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2879 [11:12:59.526] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2880 [11:12:59.538] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2881 [11:12:59.542] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2882 [11:12:59.542] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2883 [11:12:59.542] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2884 [11:12:59.551] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2885 [11:12:59.553] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2886 [11:12:59.553] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2887 [11:12:59.553] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2888 [11:12:59.561] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2889 [11:12:59.563] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2890 [11:12:59.563] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2891 [11:12:59.563] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2892 [11:12:59.571] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2893 [11:12:59.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2894 [11:12:59.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2895 [11:12:59.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2896 [11:12:59.581] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2897 [11:12:59.584] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2898 [11:12:59.584] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2899 [11:12:59.584] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2900 [11:12:59.594] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2901 [11:12:59.597] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2902 [11:12:59.597] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2903 [11:12:59.597] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2904 [11:12:59.604] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2905 [11:12:59.607] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2906 [11:12:59.607] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2907 [11:12:59.607] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2908 [11:12:59.614] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2909 [11:12:59.616] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2910 [11:12:59.616] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2911 [11:12:59.616] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2912 [11:12:59.624] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2913 [11:12:59.626] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2914 [11:12:59.626] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2915 [11:12:59.626] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2916 [11:12:59.633] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2917 [11:12:59.636] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2918 [11:12:59.636] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2919 [11:12:59.636] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2920 [11:12:59.646] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2921 [11:12:59.649] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2922 [11:12:59.649] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2923 [11:12:59.649] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2924 [11:12:59.660] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2925 [11:12:59.664] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2926 [11:12:59.664] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2927 [11:12:59.664] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2928 [11:12:59.676] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2929 [11:12:59.679] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2930 [11:12:59.679] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2931 [11:12:59.679] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2932 [11:12:59.687] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2933 [11:12:59.689] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2934 [11:12:59.689] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2935 [11:12:59.689] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2936 [11:12:59.697] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2937 [11:12:59.700] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2938 [11:12:59.700] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2939 [11:12:59.700] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2940 [11:12:59.710] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2941 [11:12:59.712] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2942 [11:12:59.713] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2943 [11:12:59.713] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2944 [11:12:59.722] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2945 [11:12:59.725] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2946 [11:12:59.725] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2947 [11:12:59.725] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2948 [11:12:59.736] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2949 [11:12:59.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2950 [11:12:59.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2951 [11:12:59.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2952 [11:12:59.747] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2953 [11:12:59.749] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2954 [11:12:59.750] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2955 [11:12:59.750] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2956 [11:12:59.760] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2957 [11:12:59.762] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2958 [11:12:59.762] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2959 [11:12:59.762] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2960 [11:12:59.771] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2961 [11:12:59.775] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2962 [11:12:59.775] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2963 [11:12:59.775] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2964 [11:12:59.784] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2965 [11:12:59.787] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2966 [11:12:59.787] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2967 [11:12:59.787] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2968 [11:12:59.800] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2969 [11:12:59.804] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2970 [11:12:59.804] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2971 [11:12:59.804] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2972 [11:12:59.814] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2973 [11:12:59.817] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2974 [11:12:59.817] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2975 [11:12:59.817] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2976 [11:12:59.828] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2977 [11:12:59.832] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2978 [11:12:59.833] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2979 [11:12:59.833] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2980 [11:12:59.843] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2981 [11:12:59.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2982 [11:12:59.846] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2983 [11:12:59.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2984 [11:12:59.857] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2985 [11:12:59.859] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2986 [11:12:59.860] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2987 [11:12:59.860] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2988 [11:12:59.867] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2989 [11:12:59.870] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2990 [11:12:59.870] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2991 [11:12:59.870] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2992 [11:12:59.879] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2993 [11:12:59.883] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2994 [11:12:59.883] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2995 [11:12:59.883] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2996 [11:12:59.895] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 2997 [11:12:59.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2998 [11:12:59.899] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 2999 [11:12:59.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3000 [11:12:59.910] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3001 [11:12:59.913] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3002 [11:12:59.913] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3003 [11:12:59.913] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3004 [11:12:59.920] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3005 [11:12:59.923] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3006 [11:12:59.923] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3007 [11:12:59.923] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3008 [11:12:59.932] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3009 [11:12:59.934] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3010 [11:12:59.934] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3011 [11:12:59.934] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3012 [11:12:59.941] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3013 [11:12:59.944] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3014 [11:12:59.944] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3015 [11:12:59.944] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3016 [11:12:59.951] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3017 [11:12:59.953] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3018 [11:12:59.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3019 [11:12:59.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3020 [11:12:59.961] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3021 [11:12:59.964] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3022 [11:12:59.964] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3023 [11:12:59.964] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3024 [11:12:59.974] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3025 [11:12:59.976] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3026 [11:12:59.976] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3027 [11:12:59.976] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3028 [11:12:59.985] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3029 [11:12:59.989] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3030 [11:12:59.989] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3031 [11:12:59.989] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3032 [11:12:59.997] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3033 [11:13:0.1] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3034 [11:13:0.1] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3035 [11:13:0.1] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3036 [11:13:0.10] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3037 [11:13:0.12] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3038 [11:13:0.12] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3039 [11:13:0.12] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3040 [11:13:0.19] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3041 [11:13:0.22] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3042 [11:13:0.22] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3043 [11:13:0.22] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3044 [11:13:0.29] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3045 [11:13:0.31] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3046 [11:13:0.31] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3047 [11:13:0.31] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3048 [11:13:0.39] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3049 [11:13:0.41] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3050 [11:13:0.41] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3051 [11:13:0.41] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3052 [11:13:0.49] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3053 [11:13:0.51] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3054 [11:13:0.51] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3055 [11:13:0.51] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3056 [11:13:0.58] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3057 [11:13:0.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3058 [11:13:0.60] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3059 [11:13:0.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3060 [11:13:0.68] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3061 [11:13:0.70] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3062 [11:13:0.70] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3063 [11:13:0.70] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3064 [11:13:0.77] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3065 [11:13:0.80] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3066 [11:13:0.80] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3067 [11:13:0.80] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3068 [11:13:0.87] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3069 [11:13:0.89] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3070 [11:13:0.89] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3071 [11:13:0.89] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3072 [11:13:0.97] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3073 [11:13:0.99] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3074 [11:13:0.99] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3075 [11:13:0.99] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3076 [11:13:0.106] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3077 [11:13:0.110] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3078 [11:13:0.110] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3079 [11:13:0.110] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3080 [11:13:0.118] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3081 [11:13:0.120] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3082 [11:13:0.120] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3083 [11:13:0.120] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3084 [11:13:0.128] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3085 [11:13:0.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3086 [11:13:0.130] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3087 [11:13:0.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3088 [11:13:0.137] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3089 [11:13:0.139] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3090 [11:13:0.139] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3091 [11:13:0.139] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3092 [11:13:0.147] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3093 [11:13:0.149] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3094 [11:13:0.149] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3095 [11:13:0.149] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3096 [11:13:0.156] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3097 [11:13:0.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3098 [11:13:0.159] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3099 [11:13:0.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3100 [11:13:0.166] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3101 [11:13:0.169] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3102 [11:13:0.169] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3103 [11:13:0.169] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3104 [11:13:0.177] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3105 [11:13:0.179] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3106 [11:13:0.179] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3107 [11:13:0.179] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3108 [11:13:0.186] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3109 [11:13:0.188] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3110 [11:13:0.188] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3111 [11:13:0.188] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3112 [11:13:0.196] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3113 [11:13:0.198] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3114 [11:13:0.198] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3115 [11:13:0.199] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3116 [11:13:0.207] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3117 [11:13:0.210] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3118 [11:13:0.210] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3119 [11:13:0.210] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3120 [11:13:0.217] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3121 [11:13:0.219] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3122 [11:13:0.219] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3123 [11:13:0.219] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3124 [11:13:0.227] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3125 [11:13:0.229] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3126 [11:13:0.230] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3127 [11:13:0.230] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3128 [11:13:0.236] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3129 [11:13:0.242] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3130 [11:13:0.242] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3131 [11:13:0.242] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3132 [11:13:0.252] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3133 [11:13:0.255] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3134 [11:13:0.255] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3135 [11:13:0.255] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3136 [11:13:0.263] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3137 [11:13:0.265] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3138 [11:13:0.265] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3139 [11:13:0.265] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3140 [11:13:0.272] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3141 [11:13:0.275] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3142 [11:13:0.275] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3143 [11:13:0.275] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3144 [11:13:0.282] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3145 [11:13:0.285] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3146 [11:13:0.285] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3147 [11:13:0.285] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3148 [11:13:0.293] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3149 [11:13:0.297] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3150 [11:13:0.297] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3151 [11:13:0.297] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3152 [11:13:0.305] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3153 [11:13:0.308] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3154 [11:13:0.308] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3155 [11:13:0.308] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3156 [11:13:0.315] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3157 [11:13:0.318] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3158 [11:13:0.318] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3159 [11:13:0.318] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3160 [11:13:0.324] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3161 [11:13:0.327] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3162 [11:13:0.327] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3163 [11:13:0.327] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3164 [11:13:0.334] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3165 [11:13:0.336] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3166 [11:13:0.337] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3167 [11:13:0.337] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3168 [11:13:0.344] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3169 [11:13:0.347] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3170 [11:13:0.347] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3171 [11:13:0.347] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3172 [11:13:0.354] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3173 [11:13:0.356] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3174 [11:13:0.356] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3175 [11:13:0.356] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3176 [11:13:0.364] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3177 [11:13:0.366] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3178 [11:13:0.366] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3179 [11:13:0.366] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3180 [11:13:0.373] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3181 [11:13:0.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3182 [11:13:0.376] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3183 [11:13:0.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3184 [11:13:0.383] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3185 [11:13:0.385] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3186 [11:13:0.385] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3187 [11:13:0.385] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3188 [11:13:0.396] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3189 [11:13:0.400] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3190 [11:13:0.400] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3191 [11:13:0.400] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3192 [11:13:0.409] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3193 [11:13:0.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3194 [11:13:0.413] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3195 [11:13:0.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3196 [11:13:0.420] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3197 [11:13:0.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3198 [11:13:0.422] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3199 [11:13:0.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3200 [11:13:0.430] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3201 [11:13:0.432] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3202 [11:13:0.432] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3203 [11:13:0.432] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3204 [11:13:0.439] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3205 [11:13:0.442] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3206 [11:13:0.442] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3207 [11:13:0.442] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3208 [11:13:0.450] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3209 [11:13:0.452] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3210 [11:13:0.452] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3211 [11:13:0.452] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3212 [11:13:0.460] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3213 [11:13:0.464] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3214 [11:13:0.464] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3215 [11:13:0.464] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3216 [11:13:0.476] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3217 [11:13:0.480] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3218 [11:13:0.480] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3219 [11:13:0.480] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3220 [11:13:0.491] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3221 [11:13:0.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3222 [11:13:0.493] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3223 [11:13:0.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3224 [11:13:0.500] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3225 [11:13:0.504] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3226 [11:13:0.504] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3227 [11:13:0.504] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3228 [11:13:0.511] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3229 [11:13:0.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3230 [11:13:0.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3231 [11:13:0.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3232 [11:13:0.521] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3233 [11:13:0.523] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3234 [11:13:0.523] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3235 [11:13:0.523] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3236 [11:13:0.530] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3237 [11:13:0.532] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3238 [11:13:0.533] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3239 [11:13:0.533] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3240 [11:13:0.540] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3241 [11:13:0.543] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3242 [11:13:0.543] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3243 [11:13:0.543] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3244 [11:13:0.550] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3245 [11:13:0.553] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3246 [11:13:0.553] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3247 [11:13:0.553] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3248 [11:13:0.559] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3249 [11:13:0.562] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3250 [11:13:0.562] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3251 [11:13:0.562] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3252 [11:13:0.569] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3253 [11:13:0.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3254 [11:13:0.572] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3255 [11:13:0.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3256 [11:13:0.579] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3257 [11:13:0.582] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3258 [11:13:0.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3259 [11:13:0.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3260 [11:13:0.590] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3261 [11:13:0.592] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3262 [11:13:0.592] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3263 [11:13:0.592] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3264 [11:13:0.599] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3265 [11:13:0.602] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3266 [11:13:0.602] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3267 [11:13:0.602] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3268 [11:13:0.608] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3269 [11:13:0.611] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3270 [11:13:0.611] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3271 [11:13:0.611] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3272 [11:13:0.618] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3273 [11:13:0.621] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3274 [11:13:0.621] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3275 [11:13:0.621] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3276 [11:13:0.629] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3277 [11:13:0.631] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3278 [11:13:0.631] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3279 [11:13:0.631] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3280 [11:13:0.638] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3281 [11:13:0.640] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3282 [11:13:0.640] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3283 [11:13:0.640] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3284 [11:13:0.648] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3285 [11:13:0.652] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3286 [11:13:0.652] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3287 [11:13:0.652] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3288 [11:13:0.659] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3289 [11:13:0.662] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3290 [11:13:0.662] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3291 [11:13:0.662] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3292 [11:13:0.669] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3293 [11:13:0.671] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3294 [11:13:0.672] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3295 [11:13:0.672] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3296 [11:13:0.679] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3297 [11:13:0.681] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3298 [11:13:0.681] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3299 [11:13:0.681] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3300 [11:13:0.688] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3301 [11:13:0.690] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3302 [11:13:0.690] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3303 [11:13:0.690] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3304 [11:13:0.698] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3305 [11:13:0.700] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3306 [11:13:0.700] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3307 [11:13:0.700] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3308 [11:13:0.708] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3309 [11:13:0.710] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3310 [11:13:0.710] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3311 [11:13:0.710] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3312 [11:13:0.717] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3313 [11:13:0.719] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3314 [11:13:0.719] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3315 [11:13:0.719] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3316 [11:13:0.727] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3317 [11:13:0.730] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3318 [11:13:0.730] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3319 [11:13:0.730] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3320 [11:13:0.736] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3321 [11:13:0.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3322 [11:13:0.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3323 [11:13:0.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3324 [11:13:0.746] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3325 [11:13:0.748] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3326 [11:13:0.748] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3327 [11:13:0.748] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3328 [11:13:0.756] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3329 [11:13:0.758] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3330 [11:13:0.758] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3331 [11:13:0.758] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3332 [11:13:0.765] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3333 [11:13:0.767] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3334 [11:13:0.767] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3335 [11:13:0.767] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3336 [11:13:0.775] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3337 [11:13:0.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3338 [11:13:0.777] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3339 [11:13:0.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3340 [11:13:0.784] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3341 [11:13:0.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3342 [11:13:0.786] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3343 [11:13:0.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3344 [11:13:0.793] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3345 [11:13:0.796] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3346 [11:13:0.796] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3347 [11:13:0.796] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3348 [11:13:0.803] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3349 [11:13:0.806] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3350 [11:13:0.806] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3351 [11:13:0.806] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3352 [11:13:0.812] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3353 [11:13:0.815] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3354 [11:13:0.816] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3355 [11:13:0.816] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3356 [11:13:0.822] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3357 [11:13:0.825] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3358 [11:13:0.825] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3359 [11:13:0.825] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3360 [11:13:0.832] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3361 [11:13:0.834] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3362 [11:13:0.835] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3363 [11:13:0.835] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3364 [11:13:0.841] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3365 [11:13:0.844] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3366 [11:13:0.844] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3367 [11:13:0.844] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3368 [11:13:0.851] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3369 [11:13:0.854] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3370 [11:13:0.854] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3371 [11:13:0.854] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3372 [11:13:0.868] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3373 [11:13:0.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3374 [11:13:0.871] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3375 [11:13:0.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3376 [11:13:0.878] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3377 [11:13:0.880] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3378 [11:13:0.880] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3379 [11:13:0.880] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3380 [11:13:0.889] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3381 [11:13:0.891] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3382 [11:13:0.891] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3383 [11:13:0.891] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3384 [11:13:0.898] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3385 [11:13:0.901] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3386 [11:13:0.901] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3387 [11:13:0.901] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3388 [11:13:0.907] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3389 [11:13:0.910] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3390 [11:13:0.910] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3391 [11:13:0.910] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3392 [11:13:0.919] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3393 [11:13:0.924] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3394 [11:13:0.924] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3395 [11:13:0.924] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3396 [11:13:0.934] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3397 [11:13:0.937] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3398 [11:13:0.937] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3399 [11:13:0.937] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3400 [11:13:0.947] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3401 [11:13:0.950] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3402 [11:13:0.950] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3403 [11:13:0.950] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3404 [11:13:0.960] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3405 [11:13:0.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3406 [11:13:0.963] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3407 [11:13:0.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3408 [11:13:0.975] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3409 [11:13:0.979] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3410 [11:13:0.979] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3411 [11:13:0.979] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3412 [11:13:0.988] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3413 [11:13:0.992] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3414 [11:13:0.992] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3415 [11:13:0.992] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3416 [11:13:1.1] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3417 [11:13:1.4] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3418 [11:13:1.4] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3419 [11:13:1.4] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3420 [11:13:1.11] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3421 [11:13:1.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3422 [11:13:1.15] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3423 [11:13:1.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3424 [11:13:1.26] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3425 [11:13:1.29] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3426 [11:13:1.29] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3427 [11:13:1.29] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3428 [11:13:1.36] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3429 [11:13:1.38] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3430 [11:13:1.38] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3431 [11:13:1.38] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3432 [11:13:1.45] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3433 [11:13:1.48] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3434 [11:13:1.48] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3435 [11:13:1.48] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3436 [11:13:1.56] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3437 [11:13:1.58] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3438 [11:13:1.58] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3439 [11:13:1.58] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3440 [11:13:1.65] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3441 [11:13:1.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3442 [11:13:1.68] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3443 [11:13:1.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3444 [11:13:1.76] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3445 [11:13:1.79] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3446 [11:13:1.79] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3447 [11:13:1.79] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3448 [11:13:1.86] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3449 [11:13:1.91] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3450 [11:13:1.91] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3451 [11:13:1.91] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3452 [11:13:1.104] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3453 [11:13:1.108] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3454 [11:13:1.108] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3455 [11:13:1.108] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3456 [11:13:1.119] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3457 [11:13:1.121] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3458 [11:13:1.121] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3459 [11:13:1.121] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3460 [11:13:1.128] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3461 [11:13:1.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3462 [11:13:1.130] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3463 [11:13:1.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3464 [11:13:1.139] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3465 [11:13:1.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3466 [11:13:1.141] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3467 [11:13:1.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3468 [11:13:1.149] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3469 [11:13:1.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3470 [11:13:1.151] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3471 [11:13:1.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3472 [11:13:1.159] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3473 [11:13:1.163] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3474 [11:13:1.163] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3475 [11:13:1.163] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3476 [11:13:1.172] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3477 [11:13:1.174] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3478 [11:13:1.174] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3479 [11:13:1.174] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3480 [11:13:1.181] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3481 [11:13:1.184] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3482 [11:13:1.184] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3483 [11:13:1.184] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3484 [11:13:1.191] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3485 [11:13:1.194] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3486 [11:13:1.194] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3487 [11:13:1.194] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3488 [11:13:1.201] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3489 [11:13:1.204] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3490 [11:13:1.204] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3491 [11:13:1.204] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3492 [11:13:1.212] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3493 [11:13:1.214] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3494 [11:13:1.214] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3495 [11:13:1.214] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3496 [11:13:1.226] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3497 [11:13:1.230] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3498 [11:13:1.230] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3499 [11:13:1.230] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3500 [11:13:1.240] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3501 [11:13:1.242] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3502 [11:13:1.242] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3503 [11:13:1.242] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3504 [11:13:1.249] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3505 [11:13:1.252] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3506 [11:13:1.252] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3507 [11:13:1.252] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3508 [11:13:1.260] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3509 [11:13:1.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3510 [11:13:1.262] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3511 [11:13:1.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3512 [11:13:1.269] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3513 [11:13:1.272] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3514 [11:13:1.272] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3515 [11:13:1.272] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3516 [11:13:1.279] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3517 [11:13:1.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3518 [11:13:1.281] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3519 [11:13:1.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3520 [11:13:1.290] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3521 [11:13:1.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3522 [11:13:1.292] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3523 [11:13:1.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3524 [11:13:1.299] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3525 [11:13:1.301] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3526 [11:13:1.301] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3527 [11:13:1.301] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3528 [11:13:1.310] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3529 [11:13:1.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3530 [11:13:1.312] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3531 [11:13:1.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3532 [11:13:1.321] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3533 [11:13:1.323] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3534 [11:13:1.323] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3535 [11:13:1.323] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3536 [11:13:1.330] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3537 [11:13:1.333] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3538 [11:13:1.333] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3539 [11:13:1.333] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3540 [11:13:1.340] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3541 [11:13:1.343] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3542 [11:13:1.343] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3543 [11:13:1.343] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3544 [11:13:1.350] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3545 [11:13:1.353] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3546 [11:13:1.353] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3547 [11:13:1.353] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3548 [11:13:1.361] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3549 [11:13:1.364] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3550 [11:13:1.364] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3551 [11:13:1.364] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3552 [11:13:1.371] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3553 [11:13:1.374] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3554 [11:13:1.374] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3555 [11:13:1.374] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3556 [11:13:1.381] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3557 [11:13:1.383] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3558 [11:13:1.383] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3559 [11:13:1.383] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3560 [11:13:1.391] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3561 [11:13:1.395] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3562 [11:13:1.395] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3563 [11:13:1.395] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3564 [11:13:1.402] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3565 [11:13:1.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3566 [11:13:1.405] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3567 [11:13:1.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3568 [11:13:1.412] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3569 [11:13:1.415] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3570 [11:13:1.415] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3571 [11:13:1.415] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3572 [11:13:1.422] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3573 [11:13:1.425] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3574 [11:13:1.425] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3575 [11:13:1.425] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3576 [11:13:1.432] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3577 [11:13:1.437] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3578 [11:13:1.437] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3579 [11:13:1.437] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3580 [11:13:1.447] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3581 [11:13:1.449] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3582 [11:13:1.449] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3583 [11:13:1.449] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3584 [11:13:1.459] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3585 [11:13:1.463] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3586 [11:13:1.463] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3587 [11:13:1.463] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3588 [11:13:1.470] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3589 [11:13:1.473] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3590 [11:13:1.473] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3591 [11:13:1.473] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3592 [11:13:1.481] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3593 [11:13:1.483] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3594 [11:13:1.484] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3595 [11:13:1.484] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3596 [11:13:1.491] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3597 [11:13:1.494] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3598 [11:13:1.494] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3599 [11:13:1.494] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3600 [11:13:1.500] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3601 [11:13:1.503] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3602 [11:13:1.503] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3603 [11:13:1.503] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3604 [11:13:1.511] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3605 [11:13:1.513] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3606 [11:13:1.513] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3607 [11:13:1.513] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3608 [11:13:1.520] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3609 [11:13:1.523] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3610 [11:13:1.523] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3611 [11:13:1.524] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3612 [11:13:1.530] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3613 [11:13:1.532] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3614 [11:13:1.532] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3615 [11:13:1.532] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3616 [11:13:1.543] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3617 [11:13:1.545] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3618 [11:13:1.545] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3619 [11:13:1.545] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3620 [11:13:1.553] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3621 [11:13:1.555] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3622 [11:13:1.555] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3623 [11:13:1.555] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3624 [11:13:1.568] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3625 [11:13:1.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3626 [11:13:1.572] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3627 [11:13:1.572] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3628 [11:13:1.587] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3629 [11:13:1.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3630 [11:13:1.590] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3631 [11:13:1.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3632 [11:13:1.597] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3633 [11:13:1.599] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3634 [11:13:1.599] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3635 [11:13:1.599] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3636 [11:13:1.606] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3637 [11:13:1.609] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3638 [11:13:1.609] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3639 [11:13:1.609] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3640 [11:13:1.615] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3641 [11:13:1.618] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3642 [11:13:1.619] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3643 [11:13:1.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3644 [11:13:1.625] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3645 [11:13:1.627] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3646 [11:13:1.628] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3647 [11:13:1.628] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3648 [11:13:1.635] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3649 [11:13:1.637] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3650 [11:13:1.638] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3651 [11:13:1.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3652 [11:13:1.644] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3653 [11:13:1.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3654 [11:13:1.646] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3655 [11:13:1.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3656 [11:13:1.659] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3657 [11:13:1.663] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3658 [11:13:1.663] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3659 [11:13:1.663] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3660 [11:13:1.677] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3661 [11:13:1.681] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3662 [11:13:1.681] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3663 [11:13:1.681] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3664 [11:13:1.693] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3665 [11:13:1.697] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3666 [11:13:1.697] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3667 [11:13:1.697] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3668 [11:13:1.707] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3669 [11:13:1.710] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3670 [11:13:1.710] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3671 [11:13:1.710] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3672 [11:13:1.716] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3673 [11:13:1.719] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3674 [11:13:1.719] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3675 [11:13:1.719] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3676 [11:13:1.730] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3677 [11:13:1.734] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3678 [11:13:1.734] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3679 [11:13:1.734] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3680 [11:13:1.745] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3681 [11:13:1.748] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3682 [11:13:1.748] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3683 [11:13:1.748] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3684 [11:13:1.756] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3685 [11:13:1.760] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3686 [11:13:1.760] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3687 [11:13:1.760] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3688 [11:13:1.769] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3689 [11:13:1.771] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3690 [11:13:1.771] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3691 [11:13:1.771] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3692 [11:13:1.779] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3693 [11:13:1.781] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3694 [11:13:1.781] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3695 [11:13:1.782] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3696 [11:13:1.788] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3697 [11:13:1.791] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3698 [11:13:1.791] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3699 [11:13:1.791] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3700 [11:13:1.798] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3701 [11:13:1.800] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3702 [11:13:1.800] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3703 [11:13:1.800] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3704 [11:13:1.807] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3705 [11:13:1.810] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3706 [11:13:1.810] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3707 [11:13:1.810] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3708 [11:13:1.817] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3709 [11:13:1.820] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3710 [11:13:1.820] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3711 [11:13:1.820] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3712 [11:13:1.827] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3713 [11:13:1.830] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3714 [11:13:1.830] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3715 [11:13:1.830] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3716 [11:13:1.836] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3717 [11:13:1.839] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3718 [11:13:1.839] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3719 [11:13:1.839] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3720 [11:13:1.847] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3721 [11:13:1.850] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3722 [11:13:1.850] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3723 [11:13:1.850] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3724 [11:13:1.858] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3725 [11:13:1.860] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3726 [11:13:1.860] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3727 [11:13:1.860] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3728 [11:13:1.867] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3729 [11:13:1.869] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3730 [11:13:1.869] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3731 [11:13:1.869] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3732 [11:13:1.877] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3733 [11:13:1.879] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3734 [11:13:1.879] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3735 [11:13:1.879] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3736 [11:13:1.886] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3737 [11:13:1.889] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3738 [11:13:1.889] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3739 [11:13:1.889] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3740 [11:13:1.896] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3741 [11:13:1.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3742 [11:13:1.898] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3743 [11:13:1.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3744 [11:13:1.906] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3745 [11:13:1.908] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3746 [11:13:1.908] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3747 [11:13:1.908] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3748 [11:13:1.915] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3749 [11:13:1.917] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3750 [11:13:1.918] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3751 [11:13:1.918] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3752 [11:13:1.925] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3753 [11:13:1.927] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3754 [11:13:1.927] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3755 [11:13:1.927] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3756 [11:13:1.935] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3757 [11:13:1.938] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3758 [11:13:1.938] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3759 [11:13:1.938] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3760 [11:13:1.945] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3761 [11:13:1.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3762 [11:13:1.949] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3763 [11:13:1.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3764 [11:13:1.959] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3765 [11:13:1.962] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3766 [11:13:1.963] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3767 [11:13:1.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3768 [11:13:1.969] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3769 [11:13:1.973] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3770 [11:13:1.973] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3771 [11:13:1.973] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3772 [11:13:1.980] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3773 [11:13:1.983] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3774 [11:13:1.983] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3775 [11:13:1.983] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3776 [11:13:1.991] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3777 [11:13:1.993] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3778 [11:13:1.993] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3779 [11:13:1.993] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3780 [11:13:2.0] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3781 [11:13:2.2] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3782 [11:13:2.2] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3783 [11:13:2.2] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3784 [11:13:2.10] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3785 [11:13:2.12] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3786 [11:13:2.12] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3787 [11:13:2.12] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3788 [11:13:2.20] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3789 [11:13:2.22] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3790 [11:13:2.22] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3791 [11:13:2.22] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3792 [11:13:2.29] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3793 [11:13:2.31] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3794 [11:13:2.31] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3795 [11:13:2.31] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3796 [11:13:2.39] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3797 [11:13:2.41] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3798 [11:13:2.41] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3799 [11:13:2.41] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3800 [11:13:2.48] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3801 [11:13:2.51] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3802 [11:13:2.51] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3803 [11:13:2.51] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3804 [11:13:2.58] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3805 [11:13:2.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3806 [11:13:2.60] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3807 [11:13:2.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3808 [11:13:2.68] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3809 [11:13:2.70] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3810 [11:13:2.70] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3811 [11:13:2.70] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3812 [11:13:2.77] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3813 [11:13:2.79] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3814 [11:13:2.79] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3815 [11:13:2.79] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3816 [11:13:2.87] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3817 [11:13:2.90] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3818 [11:13:2.90] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3819 [11:13:2.90] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3820 [11:13:2.98] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3821 [11:13:2.100] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3822 [11:13:2.100] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3823 [11:13:2.100] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3824 [11:13:2.108] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3825 [11:13:2.111] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3826 [11:13:2.111] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3827 [11:13:2.111] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3828 [11:13:2.118] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3829 [11:13:2.120] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3830 [11:13:2.120] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3831 [11:13:2.120] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3832 [11:13:2.127] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3833 [11:13:2.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3834 [11:13:2.130] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3835 [11:13:2.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3836 [11:13:2.137] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3837 [11:13:2.139] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3838 [11:13:2.139] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3839 [11:13:2.139] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3840 [11:13:2.147] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3841 [11:13:2.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3842 [11:13:2.150] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3843 [11:13:2.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3844 [11:13:2.157] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3845 [11:13:2.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3846 [11:13:2.159] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3847 [11:13:2.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3848 [11:13:2.169] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3849 [11:13:2.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3850 [11:13:2.172] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3851 [11:13:2.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3852 [11:13:2.180] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3853 [11:13:2.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3854 [11:13:2.182] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3855 [11:13:2.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3856 [11:13:2.189] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3857 [11:13:2.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3858 [11:13:2.191] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3859 [11:13:2.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3860 [11:13:2.199] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3861 [11:13:2.202] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3862 [11:13:2.202] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3863 [11:13:2.202] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3864 [11:13:2.209] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3865 [11:13:2.212] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3866 [11:13:2.212] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3867 [11:13:2.212] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3868 [11:13:2.219] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3869 [11:13:2.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3870 [11:13:2.221] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3871 [11:13:2.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3872 [11:13:2.229] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3873 [11:13:2.231] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3874 [11:13:2.231] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3875 [11:13:2.231] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3876 [11:13:2.238] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3877 [11:13:2.241] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3878 [11:13:2.241] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3879 [11:13:2.241] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3880 [11:13:2.248] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3881 [11:13:2.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3882 [11:13:2.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3883 [11:13:2.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3884 [11:13:2.259] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3885 [11:13:2.261] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3886 [11:13:2.261] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3887 [11:13:2.261] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3888 [11:13:2.269] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3889 [11:13:2.271] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3890 [11:13:2.271] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3891 [11:13:2.271] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3892 [11:13:2.279] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3893 [11:13:2.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3894 [11:13:2.281] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3895 [11:13:2.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3896 [11:13:2.288] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3897 [11:13:2.291] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3898 [11:13:2.291] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3899 [11:13:2.291] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3900 [11:13:2.299] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3901 [11:13:2.301] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3902 [11:13:2.302] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3903 [11:13:2.302] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3904 [11:13:2.310] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3905 [11:13:2.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3906 [11:13:2.312] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3907 [11:13:2.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3908 [11:13:2.319] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3909 [11:13:2.321] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3910 [11:13:2.321] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3911 [11:13:2.321] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3912 [11:13:2.329] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3913 [11:13:2.331] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3914 [11:13:2.331] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3915 [11:13:2.331] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3916 [11:13:2.340] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3917 [11:13:2.343] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3918 [11:13:2.343] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3919 [11:13:2.343] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3920 [11:13:2.350] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3921 [11:13:2.352] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3922 [11:13:2.352] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3923 [11:13:2.352] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3924 [11:13:2.360] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3925 [11:13:2.362] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3926 [11:13:2.362] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3927 [11:13:2.362] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3928 [11:13:2.369] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3929 [11:13:2.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3930 [11:13:2.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3931 [11:13:2.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3932 [11:13:2.379] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3933 [11:13:2.382] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3934 [11:13:2.382] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3935 [11:13:2.382] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3936 [11:13:2.390] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3937 [11:13:2.392] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3938 [11:13:2.392] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3939 [11:13:2.392] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3940 [11:13:2.399] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3941 [11:13:2.402] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3942 [11:13:2.402] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3943 [11:13:2.402] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3944 [11:13:2.410] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3945 [11:13:2.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3946 [11:13:2.413] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3947 [11:13:2.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3948 [11:13:2.420] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3949 [11:13:2.423] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3950 [11:13:2.423] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3951 [11:13:2.423] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3952 [11:13:2.430] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3953 [11:13:2.432] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3954 [11:13:2.432] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3955 [11:13:2.432] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3956 [11:13:2.440] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3957 [11:13:2.442] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3958 [11:13:2.442] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3959 [11:13:2.442] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3960 [11:13:2.449] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3961 [11:13:2.453] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3962 [11:13:2.453] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3963 [11:13:2.453] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3964 [11:13:2.460] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3965 [11:13:2.463] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3966 [11:13:2.463] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3967 [11:13:2.463] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3968 [11:13:2.470] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3969 [11:13:2.473] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3970 [11:13:2.473] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3971 [11:13:2.473] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3972 [11:13:2.480] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3973 [11:13:2.483] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3974 [11:13:2.483] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3975 [11:13:2.483] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3976 [11:13:2.490] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3977 [11:13:2.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3978 [11:13:2.493] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3979 [11:13:2.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3980 [11:13:2.505] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3981 [11:13:2.507] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3982 [11:13:2.508] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3983 [11:13:2.508] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3984 [11:13:2.514] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3985 [11:13:2.517] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3986 [11:13:2.517] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3987 [11:13:2.517] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3988 [11:13:2.524] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3989 [11:13:2.527] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3990 [11:13:2.527] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3991 [11:13:2.527] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3992 [11:13:2.535] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3993 [11:13:2.538] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3994 [11:13:2.538] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3995 [11:13:2.538] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3996 [11:13:2.545] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 3997 [11:13:2.547] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3998 [11:13:2.547] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 3999 [11:13:2.547] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4000 [11:13:2.555] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4001 [11:13:2.557] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4002 [11:13:2.557] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4003 [11:13:2.557] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4004 [11:13:2.564] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4005 [11:13:2.566] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4006 [11:13:2.566] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4007 [11:13:2.566] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4008 [11:13:2.574] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4009 [11:13:2.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4010 [11:13:2.576] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4011 [11:13:2.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4012 [11:13:2.585] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4013 [11:13:2.587] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4014 [11:13:2.587] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4015 [11:13:2.587] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4016 [11:13:2.596] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4017 [11:13:2.599] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4018 [11:13:2.599] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4019 [11:13:2.599] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4020 [11:13:2.606] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4021 [11:13:2.609] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4022 [11:13:2.609] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4023 [11:13:2.609] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4024 [11:13:2.615] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4025 [11:13:2.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4026 [11:13:2.619] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4027 [11:13:2.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4028 [11:13:2.626] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4029 [11:13:2.628] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4030 [11:13:2.629] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4031 [11:13:2.629] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4032 [11:13:2.636] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4033 [11:13:2.639] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4034 [11:13:2.639] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4035 [11:13:2.639] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4036 [11:13:2.645] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4037 [11:13:2.648] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4038 [11:13:2.648] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4039 [11:13:2.648] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4040 [11:13:2.655] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4041 [11:13:2.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4042 [11:13:2.658] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4043 [11:13:2.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4044 [11:13:2.666] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4045 [11:13:2.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4046 [11:13:2.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4047 [11:13:2.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4048 [11:13:2.676] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4049 [11:13:2.680] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4050 [11:13:2.681] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4051 [11:13:2.681] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4052 [11:13:2.689] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4053 [11:13:2.692] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4054 [11:13:2.692] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4055 [11:13:2.692] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4056 [11:13:2.698] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4057 [11:13:2.703] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4058 [11:13:2.703] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4059 [11:13:2.703] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4060 [11:13:2.715] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4061 [11:13:2.719] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4062 [11:13:2.719] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4063 [11:13:2.719] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4064 [11:13:2.728] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4065 [11:13:2.731] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4066 [11:13:2.731] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4067 [11:13:2.731] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4068 [11:13:2.738] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4069 [11:13:2.740] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4070 [11:13:2.740] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4071 [11:13:2.740] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4072 [11:13:2.747] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4073 [11:13:2.750] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4074 [11:13:2.750] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4075 [11:13:2.750] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4076 [11:13:2.761] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4077 [11:13:2.763] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4078 [11:13:2.763] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4079 [11:13:2.764] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4080 [11:13:2.771] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4081 [11:13:2.773] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4082 [11:13:2.773] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4083 [11:13:2.773] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4084 [11:13:2.781] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4085 [11:13:2.783] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4086 [11:13:2.783] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4087 [11:13:2.783] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4088 [11:13:2.796] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4089 [11:13:2.801] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4090 [11:13:2.801] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4091 [11:13:2.801] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4092 [11:13:2.814] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4093 [11:13:2.818] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4094 [11:13:2.819] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4095 [11:13:2.819] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4096 [11:13:2.830] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4097 [11:13:2.832] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4098 [11:13:2.832] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4099 [11:13:2.832] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4100 [11:13:2.839] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4101 [11:13:2.841] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4102 [11:13:2.841] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4103 [11:13:2.841] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4104 [11:13:2.849] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4105 [11:13:2.852] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4106 [11:13:2.852] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4107 [11:13:2.852] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4108 [11:13:2.860] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4109 [11:13:2.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4110 [11:13:2.862] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4111 [11:13:2.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4112 [11:13:2.868] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4113 [11:13:2.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4114 [11:13:2.871] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4115 [11:13:2.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4116 [11:13:2.878] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4117 [11:13:2.880] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4118 [11:13:2.880] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4119 [11:13:2.880] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4120 [11:13:2.887] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4121 [11:13:2.890] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4122 [11:13:2.890] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4123 [11:13:2.890] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4124 [11:13:2.898] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4125 [11:13:2.900] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4126 [11:13:2.900] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4127 [11:13:2.900] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4128 [11:13:2.910] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4129 [11:13:2.914] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4130 [11:13:2.915] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4131 [11:13:2.915] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4132 [11:13:2.927] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4133 [11:13:2.931] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4134 [11:13:2.931] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4135 [11:13:2.931] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4136 [11:13:2.944] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4137 [11:13:2.946] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4138 [11:13:2.946] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4139 [11:13:2.946] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4140 [11:13:2.954] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4141 [11:13:2.956] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4142 [11:13:2.956] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4143 [11:13:2.956] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4144 [11:13:2.963] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4145 [11:13:2.966] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4146 [11:13:2.966] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4147 [11:13:2.966] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4148 [11:13:2.977] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4149 [11:13:2.981] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4150 [11:13:2.981] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4151 [11:13:2.982] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4152 [11:13:2.994] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4153 [11:13:2.998] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4154 [11:13:2.998] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4155 [11:13:2.998] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4156 [11:13:3.6] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4157 [11:13:3.10] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4158 [11:13:3.10] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4159 [11:13:3.10] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4160 [11:13:3.22] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4161 [11:13:3.24] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4162 [11:13:3.24] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4163 [11:13:3.24] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4164 [11:13:3.31] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4165 [11:13:3.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4166 [11:13:3.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4167 [11:13:3.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4168 [11:13:3.46] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4169 [11:13:3.50] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4170 [11:13:3.50] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4171 [11:13:3.50] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4172 [11:13:3.60] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4173 [11:13:3.63] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4174 [11:13:3.63] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4175 [11:13:3.63] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4176 [11:13:3.70] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4177 [11:13:3.72] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4178 [11:13:3.72] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4179 [11:13:3.72] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4180 [11:13:3.80] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4181 [11:13:3.83] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4182 [11:13:3.83] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4183 [11:13:3.83] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4184 [11:13:3.90] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4185 [11:13:3.94] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4186 [11:13:3.94] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4187 [11:13:3.94] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4188 [11:13:3.100] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4189 [11:13:3.103] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4190 [11:13:3.103] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4191 [11:13:3.103] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4192 [11:13:3.111] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4193 [11:13:3.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4194 [11:13:3.113] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4195 [11:13:3.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4196 [11:13:3.120] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4197 [11:13:3.122] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4198 [11:13:3.122] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4199 [11:13:3.122] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4200 [11:13:3.130] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4201 [11:13:3.133] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4202 [11:13:3.133] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4203 [11:13:3.133] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4204 [11:13:3.140] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4205 [11:13:3.143] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4206 [11:13:3.143] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4207 [11:13:3.143] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4208 [11:13:3.150] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4209 [11:13:3.152] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4210 [11:13:3.152] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4211 [11:13:3.152] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4212 [11:13:3.160] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4213 [11:13:3.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4214 [11:13:3.162] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4215 [11:13:3.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4216 [11:13:3.169] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4217 [11:13:3.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4218 [11:13:3.172] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4219 [11:13:3.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4220 [11:13:3.179] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4221 [11:13:3.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4222 [11:13:3.182] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4223 [11:13:3.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4224 [11:13:3.189] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4225 [11:13:3.192] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4226 [11:13:3.192] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4227 [11:13:3.192] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4228 [11:13:3.198] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4229 [11:13:3.201] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4230 [11:13:3.201] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4231 [11:13:3.201] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4232 [11:13:3.208] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4233 [11:13:3.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4234 [11:13:3.211] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4235 [11:13:3.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4236 [11:13:3.218] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4237 [11:13:3.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4238 [11:13:3.221] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4239 [11:13:3.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4240 [11:13:3.228] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4241 [11:13:3.231] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4242 [11:13:3.231] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4243 [11:13:3.231] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4244 [11:13:3.240] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4245 [11:13:3.242] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4246 [11:13:3.242] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4247 [11:13:3.242] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4248 [11:13:3.249] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4249 [11:13:3.252] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4250 [11:13:3.252] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4251 [11:13:3.252] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4252 [11:13:3.260] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4253 [11:13:3.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4254 [11:13:3.262] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4255 [11:13:3.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4256 [11:13:3.269] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4257 [11:13:3.272] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4258 [11:13:3.272] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4259 [11:13:3.272] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4260 [11:13:3.279] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4261 [11:13:3.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4262 [11:13:3.281] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4263 [11:13:3.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4264 [11:13:3.289] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4265 [11:13:3.291] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4266 [11:13:3.291] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4267 [11:13:3.291] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4268 [11:13:3.300] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4269 [11:13:3.302] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4270 [11:13:3.302] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4271 [11:13:3.302] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4272 [11:13:3.310] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4273 [11:13:3.313] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4274 [11:13:3.313] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4275 [11:13:3.313] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4276 [11:13:3.321] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4277 [11:13:3.324] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4278 [11:13:3.324] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4279 [11:13:3.324] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4280 [11:13:3.331] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4281 [11:13:3.335] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4282 [11:13:3.335] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4283 [11:13:3.335] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4284 [11:13:3.342] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4285 [11:13:3.345] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4286 [11:13:3.345] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4287 [11:13:3.345] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4288 [11:13:3.354] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4289 [11:13:3.356] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4290 [11:13:3.356] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4291 [11:13:3.356] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4292 [11:13:3.363] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4293 [11:13:3.366] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4294 [11:13:3.366] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4295 [11:13:3.366] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4296 [11:13:3.374] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4297 [11:13:3.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4298 [11:13:3.376] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4299 [11:13:3.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4300 [11:13:3.384] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4301 [11:13:3.386] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4302 [11:13:3.386] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4303 [11:13:3.386] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4304 [11:13:3.393] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4305 [11:13:3.396] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4306 [11:13:3.396] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4307 [11:13:3.396] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4308 [11:13:3.404] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4309 [11:13:3.406] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4310 [11:13:3.406] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4311 [11:13:3.406] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4312 [11:13:3.413] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4313 [11:13:3.416] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4314 [11:13:3.416] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4315 [11:13:3.416] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4316 [11:13:3.423] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4317 [11:13:3.425] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4318 [11:13:3.425] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4319 [11:13:3.425] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4320 [11:13:3.432] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4321 [11:13:3.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4322 [11:13:3.435] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4323 [11:13:3.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4324 [11:13:3.442] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4325 [11:13:3.444] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4326 [11:13:3.444] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4327 [11:13:3.444] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4328 [11:13:3.451] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4329 [11:13:3.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4330 [11:13:3.454] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4331 [11:13:3.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4332 [11:13:3.464] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4333 [11:13:3.466] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4334 [11:13:3.466] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4335 [11:13:3.466] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4336 [11:13:3.473] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4337 [11:13:3.476] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4338 [11:13:3.476] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4339 [11:13:3.476] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4340 [11:13:3.484] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4341 [11:13:3.486] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4342 [11:13:3.486] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4343 [11:13:3.486] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4344 [11:13:3.493] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4345 [11:13:3.496] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4346 [11:13:3.496] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4347 [11:13:3.496] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4348 [11:13:3.503] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4349 [11:13:3.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4350 [11:13:3.505] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4351 [11:13:3.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4352 [11:13:3.513] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4353 [11:13:3.515] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4354 [11:13:3.515] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4355 [11:13:3.515] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4356 [11:13:3.522] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4357 [11:13:3.525] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4358 [11:13:3.525] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4359 [11:13:3.525] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4360 [11:13:3.532] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4361 [11:13:3.535] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4362 [11:13:3.535] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4363 [11:13:3.535] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4364 [11:13:3.542] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4365 [11:13:3.545] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4366 [11:13:3.545] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4367 [11:13:3.545] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4368 [11:13:3.551] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4369 [11:13:3.554] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4370 [11:13:3.554] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4371 [11:13:3.554] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4372 [11:13:3.566] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4373 [11:13:3.570] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4374 [11:13:3.570] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4375 [11:13:3.570] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4376 [11:13:3.580] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4377 [11:13:3.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4378 [11:13:3.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4379 [11:13:3.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4380 [11:13:3.591] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4381 [11:13:3.594] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4382 [11:13:3.594] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4383 [11:13:3.594] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4384 [11:13:3.606] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4385 [11:13:3.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4386 [11:13:3.608] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4387 [11:13:3.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4388 [11:13:3.615] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4389 [11:13:3.617] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4390 [11:13:3.617] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4391 [11:13:3.618] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4392 [11:13:3.628] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4393 [11:13:3.631] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4394 [11:13:3.631] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4395 [11:13:3.631] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4396 [11:13:3.638] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4397 [11:13:3.641] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4398 [11:13:3.641] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4399 [11:13:3.641] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4400 [11:13:3.647] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4401 [11:13:3.650] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4402 [11:13:3.650] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4403 [11:13:3.650] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4404 [11:13:3.658] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4405 [11:13:3.661] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4406 [11:13:3.661] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4407 [11:13:3.661] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4408 [11:13:3.668] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4409 [11:13:3.671] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4410 [11:13:3.671] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4411 [11:13:3.671] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4412 [11:13:3.682] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4413 [11:13:3.685] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4414 [11:13:3.685] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4415 [11:13:3.685] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4416 [11:13:3.693] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4417 [11:13:3.695] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4418 [11:13:3.695] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4419 [11:13:3.695] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4420 [11:13:3.702] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4421 [11:13:3.705] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4422 [11:13:3.705] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4423 [11:13:3.705] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4424 [11:13:3.712] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4425 [11:13:3.714] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4426 [11:13:3.714] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4427 [11:13:3.714] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4428 [11:13:3.722] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4429 [11:13:3.725] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4430 [11:13:3.725] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4431 [11:13:3.725] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4432 [11:13:3.732] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4433 [11:13:3.734] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4434 [11:13:3.734] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4435 [11:13:3.734] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4436 [11:13:3.742] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4437 [11:13:3.745] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4438 [11:13:3.745] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4439 [11:13:3.745] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4440 [11:13:3.752] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4441 [11:13:3.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4442 [11:13:3.755] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4443 [11:13:3.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4444 [11:13:3.762] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4445 [11:13:3.764] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4446 [11:13:3.764] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4447 [11:13:3.764] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4448 [11:13:3.773] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4449 [11:13:3.775] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4450 [11:13:3.775] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4451 [11:13:3.775] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4452 [11:13:3.782] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4453 [11:13:3.784] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4454 [11:13:3.784] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4455 [11:13:3.784] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4456 [11:13:3.792] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4457 [11:13:3.794] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4458 [11:13:3.794] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4459 [11:13:3.794] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4460 [11:13:3.802] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4461 [11:13:3.804] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4462 [11:13:3.804] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4463 [11:13:3.804] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4464 [11:13:3.811] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4465 [11:13:3.813] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4466 [11:13:3.813] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4467 [11:13:3.813] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4468 [11:13:3.823] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4469 [11:13:3.826] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4470 [11:13:3.826] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4471 [11:13:3.826] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4472 [11:13:3.832] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4473 [11:13:3.836] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4474 [11:13:3.836] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4475 [11:13:3.836] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4476 [11:13:3.842] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4477 [11:13:3.845] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4478 [11:13:3.845] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4479 [11:13:3.845] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4480 [11:13:3.853] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4481 [11:13:3.855] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4482 [11:13:3.856] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4483 [11:13:3.856] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4484 [11:13:3.863] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4485 [11:13:3.865] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4486 [11:13:3.865] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4487 [11:13:3.865] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4488 [11:13:3.874] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4489 [11:13:3.876] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4490 [11:13:3.876] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4491 [11:13:3.876] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4492 [11:13:3.886] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4493 [11:13:3.888] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4494 [11:13:3.888] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4495 [11:13:3.888] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4496 [11:13:3.895] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4497 [11:13:3.897] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4498 [11:13:3.897] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4499 [11:13:3.897] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4500 [11:13:3.907] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4501 [11:13:3.912] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4502 [11:13:3.912] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4503 [11:13:3.912] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4504 [11:13:3.929] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4505 [11:13:3.935] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4506 [11:13:3.935] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4507 [11:13:3.935] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4508 [11:13:3.949] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4509 [11:13:3.953] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4510 [11:13:3.953] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4511 [11:13:3.953] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4512 [11:13:3.966] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4513 [11:13:3.971] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4514 [11:13:3.971] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4515 [11:13:3.971] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4516 [11:13:3.983] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4517 [11:13:3.986] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4518 [11:13:3.986] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4519 [11:13:3.986] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4520 [11:13:3.994] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4521 [11:13:3.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4522 [11:13:3.996] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4523 [11:13:3.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4524 [11:13:4.3] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4525 [11:13:4.5] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4526 [11:13:4.5] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4527 [11:13:4.5] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4528 [11:13:4.12] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4529 [11:13:4.14] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4530 [11:13:4.14] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4531 [11:13:4.14] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4532 [11:13:4.24] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4533 [11:13:4.27] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4534 [11:13:4.27] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4535 [11:13:4.27] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4536 [11:13:4.39] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4537 [11:13:4.43] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4538 [11:13:4.43] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4539 [11:13:4.43] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4540 [11:13:4.52] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4541 [11:13:4.55] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4542 [11:13:4.55] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4543 [11:13:4.55] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4544 [11:13:4.63] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4545 [11:13:4.65] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4546 [11:13:4.65] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4547 [11:13:4.65] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4548 [11:13:4.72] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4549 [11:13:4.74] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4550 [11:13:4.74] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4551 [11:13:4.74] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4552 [11:13:4.81] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4553 [11:13:4.83] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4554 [11:13:4.83] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4555 [11:13:4.83] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4556 [11:13:4.91] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4557 [11:13:4.93] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4558 [11:13:4.93] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4559 [11:13:4.93] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4560 [11:13:4.102] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4561 [11:13:4.104] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4562 [11:13:4.104] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4563 [11:13:4.104] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4564 [11:13:4.111] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4565 [11:13:4.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4566 [11:13:4.113] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4567 [11:13:4.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4568 [11:13:4.120] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4569 [11:13:4.123] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4570 [11:13:4.123] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4571 [11:13:4.123] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4572 [11:13:4.130] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4573 [11:13:4.132] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4574 [11:13:4.132] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4575 [11:13:4.132] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4576 [11:13:4.139] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4577 [11:13:4.142] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4578 [11:13:4.142] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4579 [11:13:4.142] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4580 [11:13:4.149] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4581 [11:13:4.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4582 [11:13:4.151] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4583 [11:13:4.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4584 [11:13:4.160] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4585 [11:13:4.163] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4586 [11:13:4.163] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4587 [11:13:4.163] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4588 [11:13:4.170] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4589 [11:13:4.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4590 [11:13:4.172] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4591 [11:13:4.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4592 [11:13:4.179] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4593 [11:13:4.181] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4594 [11:13:4.181] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4595 [11:13:4.181] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4596 [11:13:4.189] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4597 [11:13:4.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4598 [11:13:4.191] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4599 [11:13:4.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4600 [11:13:4.199] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4601 [11:13:4.201] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4602 [11:13:4.201] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4603 [11:13:4.201] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4604 [11:13:4.208] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4605 [11:13:4.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4606 [11:13:4.211] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4607 [11:13:4.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4608 [11:13:4.218] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4609 [11:13:4.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4610 [11:13:4.221] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4611 [11:13:4.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4612 [11:13:4.228] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4613 [11:13:4.230] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4614 [11:13:4.230] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4615 [11:13:4.230] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4616 [11:13:4.239] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4617 [11:13:4.242] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4618 [11:13:4.242] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4619 [11:13:4.242] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4620 [11:13:4.251] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4621 [11:13:4.255] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4622 [11:13:4.255] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4623 [11:13:4.255] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4624 [11:13:4.265] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4625 [11:13:4.269] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4626 [11:13:4.270] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4627 [11:13:4.270] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4628 [11:13:4.282] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4629 [11:13:4.285] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4630 [11:13:4.285] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4631 [11:13:4.285] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4632 [11:13:4.298] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4633 [11:13:4.303] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4634 [11:13:4.303] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4635 [11:13:4.303] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4636 [11:13:4.314] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4637 [11:13:4.319] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4638 [11:13:4.319] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4639 [11:13:4.319] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4640 [11:13:4.331] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4641 [11:13:4.336] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4642 [11:13:4.336] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4643 [11:13:4.336] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4644 [11:13:4.351] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4645 [11:13:4.354] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4646 [11:13:4.354] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4647 [11:13:4.354] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4648 [11:13:4.368] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4649 [11:13:4.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4650 [11:13:4.371] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4651 [11:13:4.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4652 [11:13:4.378] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4653 [11:13:4.381] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4654 [11:13:4.381] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4655 [11:13:4.381] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4656 [11:13:4.395] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4657 [11:13:4.399] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4658 [11:13:4.399] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4659 [11:13:4.399] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4660 [11:13:4.408] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4661 [11:13:4.411] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4662 [11:13:4.411] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4663 [11:13:4.411] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4664 [11:13:4.419] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4665 [11:13:4.423] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4666 [11:13:4.424] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4667 [11:13:4.424] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4668 [11:13:4.434] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4669 [11:13:4.437] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4670 [11:13:4.437] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4671 [11:13:4.438] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4672 [11:13:4.448] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4673 [11:13:4.451] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4674 [11:13:4.451] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4675 [11:13:4.451] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4676 [11:13:4.458] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4677 [11:13:4.460] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4678 [11:13:4.461] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4679 [11:13:4.461] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4680 [11:13:4.468] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4681 [11:13:4.472] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4682 [11:13:4.472] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4683 [11:13:4.472] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4684 [11:13:4.484] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4685 [11:13:4.489] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4686 [11:13:4.493] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4687 [11:13:4.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4688 [11:13:4.505] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4689 [11:13:4.509] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4690 [11:13:4.509] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4691 [11:13:4.509] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4692 [11:13:4.518] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4693 [11:13:4.521] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4694 [11:13:4.521] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4695 [11:13:4.521] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4696 [11:13:4.532] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4697 [11:13:4.548] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4698 [11:13:4.548] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4699 [11:13:4.549] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4700 [11:13:4.558] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4701 [11:13:4.562] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4702 [11:13:4.562] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4703 [11:13:4.562] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4704 [11:13:4.574] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4705 [11:13:4.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4706 [11:13:4.578] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4707 [11:13:4.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4708 [11:13:4.590] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4709 [11:13:4.594] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4710 [11:13:4.594] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4711 [11:13:4.594] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4712 [11:13:4.606] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4713 [11:13:4.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4714 [11:13:4.608] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4715 [11:13:4.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4716 [11:13:4.616] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4717 [11:13:4.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4718 [11:13:4.619] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4719 [11:13:4.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4720 [11:13:4.632] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4721 [11:13:4.635] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4722 [11:13:4.635] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4723 [11:13:4.635] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4724 [11:13:4.644] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4725 [11:13:4.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4726 [11:13:4.646] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4727 [11:13:4.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4728 [11:13:4.653] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4729 [11:13:4.655] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4730 [11:13:4.655] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4731 [11:13:4.656] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4732 [11:13:4.662] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4733 [11:13:4.665] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4734 [11:13:4.665] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4735 [11:13:4.665] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4736 [11:13:4.675] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4737 [11:13:4.679] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4738 [11:13:4.679] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4739 [11:13:4.679] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4740 [11:13:4.690] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4741 [11:13:4.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4742 [11:13:4.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4743 [11:13:4.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4744 [11:13:4.705] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4745 [11:13:4.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4746 [11:13:4.709] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4747 [11:13:4.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4748 [11:13:4.722] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4749 [11:13:4.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4750 [11:13:4.727] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4751 [11:13:4.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4752 [11:13:4.737] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4753 [11:13:4.741] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4754 [11:13:4.741] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4755 [11:13:4.741] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4756 [11:13:4.749] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4757 [11:13:4.751] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4758 [11:13:4.751] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4759 [11:13:4.751] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4760 [11:13:4.758] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4761 [11:13:4.762] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4762 [11:13:4.762] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4763 [11:13:4.762] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4764 [11:13:4.775] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4765 [11:13:4.779] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4766 [11:13:4.779] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4767 [11:13:4.779] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4768 [11:13:4.788] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4769 [11:13:4.792] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4770 [11:13:4.792] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4771 [11:13:4.792] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4772 [11:13:4.805] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4773 [11:13:4.807] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4774 [11:13:4.807] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4775 [11:13:4.807] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4776 [11:13:4.817] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4777 [11:13:4.821] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4778 [11:13:4.821] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4779 [11:13:4.821] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4780 [11:13:4.833] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4781 [11:13:4.835] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4782 [11:13:4.835] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4783 [11:13:4.835] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4784 [11:13:4.846] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4785 [11:13:4.850] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4786 [11:13:4.850] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4787 [11:13:4.850] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4788 [11:13:4.863] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4789 [11:13:4.865] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4790 [11:13:4.865] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4791 [11:13:4.865] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4792 [11:13:4.875] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4793 [11:13:4.879] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4794 [11:13:4.879] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4795 [11:13:4.879] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4796 [11:13:4.890] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4797 [11:13:4.892] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4798 [11:13:4.892] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4799 [11:13:4.892] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4800 [11:13:4.902] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4801 [11:13:4.907] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4802 [11:13:4.907] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4803 [11:13:4.907] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4804 [11:13:4.916] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4805 [11:13:4.920] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4806 [11:13:4.920] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4807 [11:13:4.920] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4808 [11:13:4.933] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4809 [11:13:4.935] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4810 [11:13:4.936] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4811 [11:13:4.936] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4812 [11:13:4.949] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4813 [11:13:4.953] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4814 [11:13:4.954] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4815 [11:13:4.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4816 [11:13:4.967] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4817 [11:13:4.969] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4818 [11:13:4.969] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4819 [11:13:4.969] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4820 [11:13:4.982] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4821 [11:13:4.986] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4822 [11:13:4.986] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4823 [11:13:4.986] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4824 [11:13:4.996] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4825 [11:13:4.999] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4826 [11:13:4.999] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4827 [11:13:4.999] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4828 [11:13:5.7] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4829 [11:13:5.9] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4830 [11:13:5.9] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4831 [11:13:5.9] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4832 [11:13:5.16] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4833 [11:13:5.20] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4834 [11:13:5.20] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4835 [11:13:5.20] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4836 [11:13:5.27] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4837 [11:13:5.30] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4838 [11:13:5.30] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4839 [11:13:5.30] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4840 [11:13:5.42] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4841 [11:13:5.45] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4842 [11:13:5.45] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4843 [11:13:5.45] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4844 [11:13:5.57] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4845 [11:13:5.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4846 [11:13:5.60] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4847 [11:13:5.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4848 [11:13:5.73] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4849 [11:13:5.76] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4850 [11:13:5.76] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4851 [11:13:5.76] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4852 [11:13:5.85] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4853 [11:13:5.88] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4854 [11:13:5.88] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4855 [11:13:5.88] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4856 [11:13:5.96] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4857 [11:13:5.99] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4858 [11:13:5.99] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4859 [11:13:5.99] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4860 [11:13:5.106] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4861 [11:13:5.108] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4862 [11:13:5.108] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4863 [11:13:5.108] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4864 [11:13:5.120] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4865 [11:13:5.124] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4866 [11:13:5.124] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4867 [11:13:5.124] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4868 [11:13:5.136] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4869 [11:13:5.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4870 [11:13:5.141] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4871 [11:13:5.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4872 [11:13:5.154] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4873 [11:13:5.157] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4874 [11:13:5.157] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4875 [11:13:5.157] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4876 [11:13:5.170] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4877 [11:13:5.174] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4878 [11:13:5.174] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4879 [11:13:5.174] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4880 [11:13:5.183] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4881 [11:13:5.185] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4882 [11:13:5.185] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4883 [11:13:5.185] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4884 [11:13:5.194] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4885 [11:13:5.197] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4886 [11:13:5.197] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4887 [11:13:5.197] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4888 [11:13:5.206] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4889 [11:13:5.209] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4890 [11:13:5.209] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4891 [11:13:5.209] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4892 [11:13:5.221] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4893 [11:13:5.223] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4894 [11:13:5.223] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4895 [11:13:5.223] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4896 [11:13:5.231] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4897 [11:13:5.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4898 [11:13:5.234] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4899 [11:13:5.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4900 [11:13:5.241] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4901 [11:13:5.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4902 [11:13:5.243] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4903 [11:13:5.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4904 [11:13:5.252] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4905 [11:13:5.255] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4906 [11:13:5.255] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4907 [11:13:5.255] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4908 [11:13:5.262] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4909 [11:13:5.264] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4910 [11:13:5.264] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4911 [11:13:5.264] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4912 [11:13:5.271] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4913 [11:13:5.273] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4914 [11:13:5.273] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4915 [11:13:5.273] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4916 [11:13:5.281] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4917 [11:13:5.285] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4918 [11:13:5.285] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4919 [11:13:5.285] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4920 [11:13:5.293] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4921 [11:13:5.295] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4922 [11:13:5.295] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4923 [11:13:5.295] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4924 [11:13:5.302] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4925 [11:13:5.305] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4926 [11:13:5.305] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4927 [11:13:5.305] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4928 [11:13:5.312] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4929 [11:13:5.315] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4930 [11:13:5.315] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4931 [11:13:5.315] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4932 [11:13:5.323] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4933 [11:13:5.325] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4934 [11:13:5.325] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4935 [11:13:5.325] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4936 [11:13:5.334] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4937 [11:13:5.339] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4938 [11:13:5.339] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4939 [11:13:5.339] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4940 [11:13:5.349] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4941 [11:13:5.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4942 [11:13:5.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4943 [11:13:5.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4944 [11:13:5.359] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4945 [11:13:5.361] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4946 [11:13:5.361] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4947 [11:13:5.361] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4948 [11:13:5.369] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4949 [11:13:5.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4950 [11:13:5.373] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4951 [11:13:5.373] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4952 [11:13:5.381] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4953 [11:13:5.384] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4954 [11:13:5.384] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4955 [11:13:5.384] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4956 [11:13:5.392] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4957 [11:13:5.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4958 [11:13:5.394] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4959 [11:13:5.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4960 [11:13:5.402] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4961 [11:13:5.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4962 [11:13:5.405] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4963 [11:13:5.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4964 [11:13:5.412] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4965 [11:13:5.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4966 [11:13:5.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4967 [11:13:5.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4968 [11:13:5.422] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4969 [11:13:5.424] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4970 [11:13:5.424] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4971 [11:13:5.424] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4972 [11:13:5.431] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4973 [11:13:5.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4974 [11:13:5.435] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4975 [11:13:5.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4976 [11:13:5.448] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4977 [11:13:5.452] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4978 [11:13:5.452] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4979 [11:13:5.452] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4980 [11:13:5.462] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4981 [11:13:5.465] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4982 [11:13:5.465] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4983 [11:13:5.465] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4984 [11:13:5.477] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4985 [11:13:5.479] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4986 [11:13:5.479] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4987 [11:13:5.479] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4988 [11:13:5.486] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4989 [11:13:5.489] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4990 [11:13:5.489] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4991 [11:13:5.489] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4992 [11:13:5.496] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4993 [11:13:5.499] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4994 [11:13:5.499] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4995 [11:13:5.499] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4996 [11:13:5.508] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 4997 [11:13:5.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4998 [11:13:5.512] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 4999 [11:13:5.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5000 [11:13:5.523] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5001 [11:13:5.525] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5002 [11:13:5.525] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5003 [11:13:5.525] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5004 [11:13:5.536] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5005 [11:13:5.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5006 [11:13:5.540] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5007 [11:13:5.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5008 [11:13:5.547] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5009 [11:13:5.550] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5010 [11:13:5.550] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5011 [11:13:5.550] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5012 [11:13:5.557] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5013 [11:13:5.559] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5014 [11:13:5.559] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5015 [11:13:5.559] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5016 [11:13:5.570] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5017 [11:13:5.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5018 [11:13:5.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5019 [11:13:5.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5020 [11:13:5.582] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5021 [11:13:5.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5022 [11:13:5.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5023 [11:13:5.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5024 [11:13:5.593] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5025 [11:13:5.595] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5026 [11:13:5.595] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5027 [11:13:5.595] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5028 [11:13:5.602] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5029 [11:13:5.605] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5030 [11:13:5.605] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5031 [11:13:5.605] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5032 [11:13:5.615] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5033 [11:13:5.617] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5034 [11:13:5.618] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5035 [11:13:5.618] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5036 [11:13:5.625] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5037 [11:13:5.627] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5038 [11:13:5.627] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5039 [11:13:5.627] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5040 [11:13:5.634] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5041 [11:13:5.636] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5042 [11:13:5.636] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5043 [11:13:5.636] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5044 [11:13:5.644] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5045 [11:13:5.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5046 [11:13:5.646] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5047 [11:13:5.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5048 [11:13:5.653] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5049 [11:13:5.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5050 [11:13:5.658] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5051 [11:13:5.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5052 [11:13:5.671] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5053 [11:13:5.675] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5054 [11:13:5.675] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5055 [11:13:5.675] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5056 [11:13:5.689] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5057 [11:13:5.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5058 [11:13:5.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5059 [11:13:5.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5060 [11:13:5.706] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5061 [11:13:5.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5062 [11:13:5.710] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5063 [11:13:5.710] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5064 [11:13:5.723] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5065 [11:13:5.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5066 [11:13:5.728] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5067 [11:13:5.728] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5068 [11:13:5.740] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5069 [11:13:5.743] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5070 [11:13:5.743] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5071 [11:13:5.743] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5072 [11:13:5.750] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5073 [11:13:5.752] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5074 [11:13:5.752] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5075 [11:13:5.752] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5076 [11:13:5.765] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5077 [11:13:5.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5078 [11:13:5.769] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5079 [11:13:5.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5080 [11:13:5.782] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5081 [11:13:5.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5082 [11:13:5.786] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5083 [11:13:5.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5084 [11:13:5.794] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5085 [11:13:5.797] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5086 [11:13:5.797] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5087 [11:13:5.797] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5088 [11:13:5.806] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5089 [11:13:5.810] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5090 [11:13:5.810] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5091 [11:13:5.810] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5092 [11:13:5.822] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5093 [11:13:5.826] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5094 [11:13:5.826] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5095 [11:13:5.826] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5096 [11:13:5.837] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5097 [11:13:5.840] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5098 [11:13:5.840] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5099 [11:13:5.840] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5100 [11:13:5.846] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5101 [11:13:5.849] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5102 [11:13:5.849] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5103 [11:13:5.849] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5104 [11:13:5.856] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5105 [11:13:5.859] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5106 [11:13:5.859] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5107 [11:13:5.859] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5108 [11:13:5.868] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5109 [11:13:5.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5110 [11:13:5.872] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5111 [11:13:5.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5112 [11:13:5.885] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5113 [11:13:5.888] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5114 [11:13:5.888] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5115 [11:13:5.888] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5116 [11:13:5.895] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5117 [11:13:5.897] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5118 [11:13:5.898] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5119 [11:13:5.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5120 [11:13:5.907] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5121 [11:13:5.911] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5122 [11:13:5.911] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5123 [11:13:5.911] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5124 [11:13:5.924] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5125 [11:13:5.928] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5126 [11:13:5.928] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5127 [11:13:5.929] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5128 [11:13:5.941] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5129 [11:13:5.946] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5130 [11:13:5.946] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5131 [11:13:5.946] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5132 [11:13:5.959] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5133 [11:13:5.964] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5134 [11:13:5.964] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5135 [11:13:5.964] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5136 [11:13:5.971] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5137 [11:13:5.975] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5138 [11:13:5.975] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5139 [11:13:5.975] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5140 [11:13:5.983] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5141 [11:13:5.989] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5142 [11:13:5.989] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5143 [11:13:5.989] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5144 [11:13:5.997] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5145 [11:13:6.0] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5146 [11:13:6.0] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5147 [11:13:6.0] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5148 [11:13:6.12] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5149 [11:13:6.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5150 [11:13:6.15] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5151 [11:13:6.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5152 [11:13:6.24] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5153 [11:13:6.27] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5154 [11:13:6.27] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5155 [11:13:6.27] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5156 [11:13:6.37] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5157 [11:13:6.40] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5158 [11:13:6.40] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5159 [11:13:6.40] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5160 [11:13:6.53] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5161 [11:13:6.58] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5162 [11:13:6.58] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5163 [11:13:6.58] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5164 [11:13:6.66] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5165 [11:13:6.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5166 [11:13:6.68] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5167 [11:13:6.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5168 [11:13:6.80] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5169 [11:13:6.84] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5170 [11:13:6.84] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5171 [11:13:6.84] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5172 [11:13:6.94] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5173 [11:13:6.97] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5174 [11:13:6.97] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5175 [11:13:6.97] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5176 [11:13:6.105] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5177 [11:13:6.109] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5178 [11:13:6.109] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5179 [11:13:6.109] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5180 [11:13:6.109] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5181 [11:13:6.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5182 [11:13:6.113] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5183 [11:13:6.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5184 [11:13:6.113] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5185 [11:13:6.116] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5186 [11:13:6.116] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5187 [11:13:6.116] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5188 [11:13:6.128] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5189 [11:13:6.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5190 [11:13:6.130] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5191 [11:13:6.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5192 [11:13:6.142] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5193 [11:13:6.146] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5194 [11:13:6.146] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5195 [11:13:6.146] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5196 [11:13:6.159] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5197 [11:13:6.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5198 [11:13:6.162] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5199 [11:13:6.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5200 [11:13:6.171] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5201 [11:13:6.174] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5202 [11:13:6.174] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5203 [11:13:6.174] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5204 [11:13:6.181] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5205 [11:13:6.184] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5206 [11:13:6.184] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5207 [11:13:6.184] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5208 [11:13:6.191] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5209 [11:13:6.194] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5210 [11:13:6.194] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5211 [11:13:6.194] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5212 [11:13:6.202] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5213 [11:13:6.205] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5214 [11:13:6.205] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5215 [11:13:6.205] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5216 [11:13:6.212] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5217 [11:13:6.215] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5218 [11:13:6.215] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5219 [11:13:6.215] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5220 [11:13:6.222] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5221 [11:13:6.225] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5222 [11:13:6.225] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5223 [11:13:6.225] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5224 [11:13:6.232] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5225 [11:13:6.236] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5226 [11:13:6.236] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5227 [11:13:6.236] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5228 [11:13:6.249] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5229 [11:13:6.253] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5230 [11:13:6.253] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5231 [11:13:6.253] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5232 [11:13:6.265] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5233 [11:13:6.267] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5234 [11:13:6.267] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5235 [11:13:6.267] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5236 [11:13:6.274] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5237 [11:13:6.278] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5238 [11:13:6.278] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5239 [11:13:6.278] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5240 [11:13:6.286] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5241 [11:13:6.288] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5242 [11:13:6.288] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5243 [11:13:6.288] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5244 [11:13:6.297] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5245 [11:13:6.299] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5246 [11:13:6.299] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5247 [11:13:6.299] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5248 [11:13:6.307] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5249 [11:13:6.310] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5250 [11:13:6.310] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5251 [11:13:6.310] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5252 [11:13:6.322] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5253 [11:13:6.324] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5254 [11:13:6.324] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5255 [11:13:6.324] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5256 [11:13:6.334] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5257 [11:13:6.337] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5258 [11:13:6.337] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5259 [11:13:6.337] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5260 [11:13:6.349] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5261 [11:13:6.353] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5262 [11:13:6.353] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5263 [11:13:6.353] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5264 [11:13:6.366] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5265 [11:13:6.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5266 [11:13:6.370] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5267 [11:13:6.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5268 [11:13:6.384] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5269 [11:13:6.388] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5270 [11:13:6.388] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5271 [11:13:6.388] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5272 [11:13:6.399] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5273 [11:13:6.401] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5274 [11:13:6.401] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5275 [11:13:6.401] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5276 [11:13:6.408] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5277 [11:13:6.410] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5278 [11:13:6.410] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5279 [11:13:6.410] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5280 [11:13:6.418] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5281 [11:13:6.420] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5282 [11:13:6.420] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5283 [11:13:6.421] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5284 [11:13:6.427] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5285 [11:13:6.429] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5286 [11:13:6.429] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5287 [11:13:6.429] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5288 [11:13:6.436] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5289 [11:13:6.439] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5290 [11:13:6.439] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5291 [11:13:6.439] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5292 [11:13:6.445] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5293 [11:13:6.448] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5294 [11:13:6.448] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5295 [11:13:6.448] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5296 [11:13:6.455] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5297 [11:13:6.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5298 [11:13:6.458] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5299 [11:13:6.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5300 [11:13:6.464] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5301 [11:13:6.467] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5302 [11:13:6.467] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5303 [11:13:6.467] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5304 [11:13:6.475] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5305 [11:13:6.477] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5306 [11:13:6.477] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5307 [11:13:6.477] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5308 [11:13:6.485] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5309 [11:13:6.487] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5310 [11:13:6.487] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5311 [11:13:6.487] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5312 [11:13:6.494] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5313 [11:13:6.496] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5314 [11:13:6.496] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5315 [11:13:6.496] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5316 [11:13:6.503] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5317 [11:13:6.506] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5318 [11:13:6.506] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5319 [11:13:6.506] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5320 [11:13:6.513] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5321 [11:13:6.516] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5322 [11:13:6.516] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5323 [11:13:6.516] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5324 [11:13:6.523] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5325 [11:13:6.526] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5326 [11:13:6.526] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5327 [11:13:6.526] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5328 [11:13:6.536] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5329 [11:13:6.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5330 [11:13:6.540] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5331 [11:13:6.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5332 [11:13:6.550] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5333 [11:13:6.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5334 [11:13:6.552] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5335 [11:13:6.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5336 [11:13:6.560] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5337 [11:13:6.563] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5338 [11:13:6.563] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5339 [11:13:6.563] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5340 [11:13:6.571] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5341 [11:13:6.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5342 [11:13:6.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5343 [11:13:6.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5344 [11:13:6.583] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5345 [11:13:6.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5346 [11:13:6.586] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5347 [11:13:6.586] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5348 [11:13:6.597] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5349 [11:13:6.600] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5350 [11:13:6.600] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5351 [11:13:6.600] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5352 [11:13:6.607] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5353 [11:13:6.609] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5354 [11:13:6.609] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5355 [11:13:6.609] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5356 [11:13:6.616] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5357 [11:13:6.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5358 [11:13:6.619] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5359 [11:13:6.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5360 [11:13:6.631] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5361 [11:13:6.635] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5362 [11:13:6.635] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5363 [11:13:6.635] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5364 [11:13:6.644] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5365 [11:13:6.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5366 [11:13:6.646] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5367 [11:13:6.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5368 [11:13:6.653] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5369 [11:13:6.657] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5370 [11:13:6.657] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5371 [11:13:6.657] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5372 [11:13:6.665] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5373 [11:13:6.667] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5374 [11:13:6.667] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5375 [11:13:6.667] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5376 [11:13:6.674] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5377 [11:13:6.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5378 [11:13:6.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5379 [11:13:6.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5380 [11:13:6.686] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5381 [11:13:6.689] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5382 [11:13:6.689] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5383 [11:13:6.689] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5384 [11:13:6.697] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5385 [11:13:6.699] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5386 [11:13:6.699] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5387 [11:13:6.699] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5388 [11:13:6.707] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5389 [11:13:6.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5390 [11:13:6.709] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5391 [11:13:6.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5392 [11:13:6.716] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5393 [11:13:6.718] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5394 [11:13:6.718] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5395 [11:13:6.718] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5396 [11:13:6.726] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5397 [11:13:6.729] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5398 [11:13:6.729] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5399 [11:13:6.729] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5400 [11:13:6.737] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5401 [11:13:6.741] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5402 [11:13:6.742] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5403 [11:13:6.742] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5404 [11:13:6.753] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5405 [11:13:6.756] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5406 [11:13:6.756] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5407 [11:13:6.756] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5408 [11:13:6.763] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5409 [11:13:6.766] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5410 [11:13:6.766] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5411 [11:13:6.766] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5412 [11:13:6.774] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5413 [11:13:6.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5414 [11:13:6.776] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5415 [11:13:6.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5416 [11:13:6.783] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5417 [11:13:6.787] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5418 [11:13:6.787] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5419 [11:13:6.787] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5420 [11:13:6.801] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5421 [11:13:6.803] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5422 [11:13:6.804] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5423 [11:13:6.804] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5424 [11:13:6.813] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5425 [11:13:6.818] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5426 [11:13:6.818] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5427 [11:13:6.818] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5428 [11:13:6.830] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5429 [11:13:6.835] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5430 [11:13:6.835] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5431 [11:13:6.835] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5432 [11:13:6.845] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5433 [11:13:6.848] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5434 [11:13:6.848] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5435 [11:13:6.848] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5436 [11:13:6.857] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5437 [11:13:6.861] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5438 [11:13:6.861] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5439 [11:13:6.861] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5440 [11:13:6.873] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5441 [11:13:6.877] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5442 [11:13:6.878] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5443 [11:13:6.878] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5444 [11:13:6.884] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5445 [11:13:6.887] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5446 [11:13:6.887] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5447 [11:13:6.887] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5448 [11:13:6.896] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5449 [11:13:6.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5450 [11:13:6.899] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5451 [11:13:6.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5452 [11:13:6.906] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5453 [11:13:6.909] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5454 [11:13:6.909] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5455 [11:13:6.909] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5456 [11:13:6.918] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5457 [11:13:6.920] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5458 [11:13:6.920] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5459 [11:13:6.920] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5460 [11:13:6.927] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5461 [11:13:6.930] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5462 [11:13:6.930] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5463 [11:13:6.930] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5464 [11:13:6.936] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5465 [11:13:6.939] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5466 [11:13:6.939] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5467 [11:13:6.939] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5468 [11:13:6.946] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5469 [11:13:6.948] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5470 [11:13:6.948] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5471 [11:13:6.948] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5472 [11:13:6.955] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5473 [11:13:6.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5474 [11:13:6.959] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5475 [11:13:6.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5476 [11:13:6.965] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5477 [11:13:6.968] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5478 [11:13:6.968] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5479 [11:13:6.968] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5480 [11:13:6.975] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5481 [11:13:6.977] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5482 [11:13:6.977] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5483 [11:13:6.977] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5484 [11:13:6.984] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5485 [11:13:6.986] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5486 [11:13:6.986] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5487 [11:13:6.986] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5488 [11:13:6.994] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5489 [11:13:6.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5490 [11:13:6.996] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5491 [11:13:6.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5492 [11:13:7.3] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5493 [11:13:7.5] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5494 [11:13:7.5] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5495 [11:13:7.5] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5496 [11:13:7.12] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5497 [11:13:7.14] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5498 [11:13:7.15] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5499 [11:13:7.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5500 [11:13:7.25] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5501 [11:13:7.27] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5502 [11:13:7.27] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5503 [11:13:7.27] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5504 [11:13:7.34] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5505 [11:13:7.36] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5506 [11:13:7.36] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5507 [11:13:7.36] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5508 [11:13:7.46] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5509 [11:13:7.48] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5510 [11:13:7.48] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5511 [11:13:7.48] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5512 [11:13:7.56] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5513 [11:13:7.59] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5514 [11:13:7.59] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5515 [11:13:7.59] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5516 [11:13:7.65] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5517 [11:13:7.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5518 [11:13:7.68] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5519 [11:13:7.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5520 [11:13:7.78] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5521 [11:13:7.82] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5522 [11:13:7.82] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5523 [11:13:7.82] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5524 [11:13:7.96] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5525 [11:13:7.100] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5526 [11:13:7.100] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5527 [11:13:7.100] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5528 [11:13:7.108] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5529 [11:13:7.111] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5530 [11:13:7.111] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5531 [11:13:7.111] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5532 [11:13:7.118] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5533 [11:13:7.120] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5534 [11:13:7.120] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5535 [11:13:7.120] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5536 [11:13:7.127] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5537 [11:13:7.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5538 [11:13:7.130] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5539 [11:13:7.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5540 [11:13:7.138] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5541 [11:13:7.140] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5542 [11:13:7.140] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5543 [11:13:7.140] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5544 [11:13:7.148] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5545 [11:13:7.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5546 [11:13:7.150] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5547 [11:13:7.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5548 [11:13:7.158] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5549 [11:13:7.160] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5550 [11:13:7.160] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5551 [11:13:7.160] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5552 [11:13:7.169] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5553 [11:13:7.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5554 [11:13:7.172] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5555 [11:13:7.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5556 [11:13:7.178] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5557 [11:13:7.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5558 [11:13:7.182] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5559 [11:13:7.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5560 [11:13:7.191] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5561 [11:13:7.196] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5562 [11:13:7.196] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5563 [11:13:7.196] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5564 [11:13:7.209] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5565 [11:13:7.213] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5566 [11:13:7.213] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5567 [11:13:7.213] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5568 [11:13:7.225] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5569 [11:13:7.230] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5570 [11:13:7.230] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5571 [11:13:7.230] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5572 [11:13:7.241] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5573 [11:13:7.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5574 [11:13:7.243] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5575 [11:13:7.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5576 [11:13:7.251] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5577 [11:13:7.253] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5578 [11:13:7.253] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5579 [11:13:7.253] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5580 [11:13:7.260] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5581 [11:13:7.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5582 [11:13:7.262] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5583 [11:13:7.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5584 [11:13:7.269] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5585 [11:13:7.271] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5586 [11:13:7.271] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5587 [11:13:7.271] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5588 [11:13:7.279] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5589 [11:13:7.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5590 [11:13:7.281] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5591 [11:13:7.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5592 [11:13:7.289] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5593 [11:13:7.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5594 [11:13:7.292] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5595 [11:13:7.292] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5596 [11:13:7.299] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5597 [11:13:7.301] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5598 [11:13:7.301] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5599 [11:13:7.301] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5600 [11:13:7.308] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5601 [11:13:7.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5602 [11:13:7.312] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5603 [11:13:7.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5604 [11:13:7.319] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5605 [11:13:7.321] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5606 [11:13:7.321] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5607 [11:13:7.321] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5608 [11:13:7.328] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5609 [11:13:7.330] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5610 [11:13:7.330] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5611 [11:13:7.330] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5612 [11:13:7.337] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5613 [11:13:7.339] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5614 [11:13:7.339] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5615 [11:13:7.339] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5616 [11:13:7.347] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5617 [11:13:7.349] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5618 [11:13:7.349] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5619 [11:13:7.349] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5620 [11:13:7.356] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5621 [11:13:7.359] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5622 [11:13:7.359] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5623 [11:13:7.359] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5624 [11:13:7.365] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5625 [11:13:7.368] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5626 [11:13:7.368] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5627 [11:13:7.368] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5628 [11:13:7.375] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5629 [11:13:7.378] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5630 [11:13:7.378] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5631 [11:13:7.378] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5632 [11:13:7.385] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5633 [11:13:7.387] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5634 [11:13:7.387] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5635 [11:13:7.387] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5636 [11:13:7.394] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5637 [11:13:7.397] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5638 [11:13:7.397] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5639 [11:13:7.397] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5640 [11:13:7.404] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5641 [11:13:7.407] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5642 [11:13:7.407] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5643 [11:13:7.407] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5644 [11:13:7.414] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5645 [11:13:7.416] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5646 [11:13:7.416] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5647 [11:13:7.416] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5648 [11:13:7.423] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5649 [11:13:7.425] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5650 [11:13:7.425] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5651 [11:13:7.425] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5652 [11:13:7.433] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5653 [11:13:7.438] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5654 [11:13:7.438] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5655 [11:13:7.438] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5656 [11:13:7.450] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5657 [11:13:7.455] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5658 [11:13:7.455] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5659 [11:13:7.455] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5660 [11:13:7.467] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5661 [11:13:7.469] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5662 [11:13:7.469] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5663 [11:13:7.469] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5664 [11:13:7.476] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5665 [11:13:7.479] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5666 [11:13:7.479] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5667 [11:13:7.479] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5668 [11:13:7.486] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5669 [11:13:7.488] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5670 [11:13:7.488] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5671 [11:13:7.488] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5672 [11:13:7.495] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5673 [11:13:7.498] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5674 [11:13:7.498] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5675 [11:13:7.498] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5676 [11:13:7.504] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5677 [11:13:7.507] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5678 [11:13:7.507] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5679 [11:13:7.507] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5680 [11:13:7.515] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5681 [11:13:7.517] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5682 [11:13:7.517] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5683 [11:13:7.517] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5684 [11:13:7.524] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5685 [11:13:7.526] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5686 [11:13:7.526] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5687 [11:13:7.526] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5688 [11:13:7.538] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5689 [11:13:7.542] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5690 [11:13:7.542] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5691 [11:13:7.542] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5692 [11:13:7.552] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5693 [11:13:7.555] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5694 [11:13:7.555] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5695 [11:13:7.555] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5696 [11:13:7.565] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5697 [11:13:7.567] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5698 [11:13:7.567] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5699 [11:13:7.567] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5700 [11:13:7.574] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5701 [11:13:7.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5702 [11:13:7.577] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5703 [11:13:7.577] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5704 [11:13:7.586] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5705 [11:13:7.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5706 [11:13:7.590] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5707 [11:13:7.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5708 [11:13:7.603] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5709 [11:13:7.607] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5710 [11:13:7.608] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5711 [11:13:7.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5712 [11:13:7.620] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5713 [11:13:7.624] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5714 [11:13:7.625] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5715 [11:13:7.625] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5716 [11:13:7.638] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5717 [11:13:7.640] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5718 [11:13:7.640] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5719 [11:13:7.640] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5720 [11:13:7.647] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5721 [11:13:7.650] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5722 [11:13:7.650] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5723 [11:13:7.650] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5724 [11:13:7.657] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5725 [11:13:7.660] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5726 [11:13:7.660] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5727 [11:13:7.660] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5728 [11:13:7.666] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5729 [11:13:7.669] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5730 [11:13:7.670] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5731 [11:13:7.670] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5732 [11:13:7.676] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5733 [11:13:7.679] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5734 [11:13:7.679] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5735 [11:13:7.679] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5736 [11:13:7.685] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5737 [11:13:7.689] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5738 [11:13:7.689] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5739 [11:13:7.689] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5740 [11:13:7.697] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5741 [11:13:7.699] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5742 [11:13:7.699] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5743 [11:13:7.699] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5744 [11:13:7.707] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5745 [11:13:7.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5746 [11:13:7.709] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5747 [11:13:7.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5748 [11:13:7.716] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5749 [11:13:7.718] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5750 [11:13:7.718] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5751 [11:13:7.718] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5752 [11:13:7.725] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5753 [11:13:7.728] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5754 [11:13:7.728] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5755 [11:13:7.728] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5756 [11:13:7.736] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5757 [11:13:7.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5758 [11:13:7.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5759 [11:13:7.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5760 [11:13:7.746] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5761 [11:13:7.748] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5762 [11:13:7.749] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5763 [11:13:7.749] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5764 [11:13:7.756] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5765 [11:13:7.758] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5766 [11:13:7.758] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5767 [11:13:7.758] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5768 [11:13:7.766] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5769 [11:13:7.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5770 [11:13:7.770] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5771 [11:13:7.770] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5772 [11:13:7.777] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5773 [11:13:7.779] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5774 [11:13:7.779] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5775 [11:13:7.779] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5776 [11:13:7.786] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5777 [11:13:7.788] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5778 [11:13:7.788] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5779 [11:13:7.788] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5780 [11:13:7.795] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5781 [11:13:7.798] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5782 [11:13:7.798] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5783 [11:13:7.798] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5784 [11:13:7.805] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5785 [11:13:7.807] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5786 [11:13:7.807] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5787 [11:13:7.807] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5788 [11:13:7.813] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5789 [11:13:7.816] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5790 [11:13:7.816] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5791 [11:13:7.816] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5792 [11:13:7.822] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5793 [11:13:7.825] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5794 [11:13:7.825] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5795 [11:13:7.825] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5796 [11:13:7.832] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5797 [11:13:7.834] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5798 [11:13:7.834] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5799 [11:13:7.834] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5800 [11:13:7.841] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5801 [11:13:7.843] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5802 [11:13:7.843] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5803 [11:13:7.843] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5804 [11:13:7.850] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5805 [11:13:7.852] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5806 [11:13:7.852] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5807 [11:13:7.852] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5808 [11:13:7.860] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5809 [11:13:7.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5810 [11:13:7.862] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5811 [11:13:7.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5812 [11:13:7.869] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5813 [11:13:7.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5814 [11:13:7.871] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5815 [11:13:7.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5816 [11:13:7.880] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5817 [11:13:7.882] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5818 [11:13:7.882] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5819 [11:13:7.882] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5820 [11:13:7.889] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5821 [11:13:7.892] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5822 [11:13:7.892] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5823 [11:13:7.892] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5824 [11:13:7.899] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5825 [11:13:7.901] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5826 [11:13:7.901] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5827 [11:13:7.901] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5828 [11:13:7.908] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5829 [11:13:7.910] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5830 [11:13:7.910] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5831 [11:13:7.910] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5832 [11:13:7.918] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5833 [11:13:7.920] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5834 [11:13:7.920] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5835 [11:13:7.920] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5836 [11:13:7.927] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5837 [11:13:7.929] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5838 [11:13:7.929] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5839 [11:13:7.929] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5840 [11:13:7.936] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5841 [11:13:7.938] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5842 [11:13:7.938] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5843 [11:13:7.938] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5844 [11:13:7.946] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5845 [11:13:7.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5846 [11:13:7.949] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5847 [11:13:7.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5848 [11:13:7.956] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5849 [11:13:7.958] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5850 [11:13:7.958] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5851 [11:13:7.958] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5852 [11:13:7.965] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5853 [11:13:7.968] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5854 [11:13:7.968] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5855 [11:13:7.968] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5856 [11:13:7.975] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5857 [11:13:7.977] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5858 [11:13:7.977] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5859 [11:13:7.977] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5860 [11:13:7.984] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5861 [11:13:7.987] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5862 [11:13:7.987] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5863 [11:13:7.987] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5864 [11:13:7.993] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5865 [11:13:7.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5866 [11:13:7.996] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5867 [11:13:7.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5868 [11:13:8.3] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5869 [11:13:8.5] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5870 [11:13:8.5] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5871 [11:13:8.5] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5872 [11:13:8.13] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5873 [11:13:8.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5874 [11:13:8.15] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5875 [11:13:8.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5876 [11:13:8.22] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5877 [11:13:8.24] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5878 [11:13:8.24] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5879 [11:13:8.24] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5880 [11:13:8.31] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5881 [11:13:8.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5882 [11:13:8.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5883 [11:13:8.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5884 [11:13:8.41] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5885 [11:13:8.43] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5886 [11:13:8.43] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5887 [11:13:8.43] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5888 [11:13:8.50] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5889 [11:13:8.52] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5890 [11:13:8.52] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5891 [11:13:8.52] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5892 [11:13:8.59] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5893 [11:13:8.61] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5894 [11:13:8.61] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5895 [11:13:8.61] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5896 [11:13:8.69] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5897 [11:13:8.71] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5898 [11:13:8.71] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5899 [11:13:8.71] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5900 [11:13:8.78] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5901 [11:13:8.80] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5902 [11:13:8.80] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5903 [11:13:8.80] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5904 [11:13:8.88] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5905 [11:13:8.90] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5906 [11:13:8.90] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5907 [11:13:8.90] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5908 [11:13:8.98] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5909 [11:13:8.100] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5910 [11:13:8.100] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5911 [11:13:8.100] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5912 [11:13:8.107] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5913 [11:13:8.109] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5914 [11:13:8.109] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5915 [11:13:8.109] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5916 [11:13:8.116] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5917 [11:13:8.118] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5918 [11:13:8.118] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5919 [11:13:8.118] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5920 [11:13:8.125] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5921 [11:13:8.127] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5922 [11:13:8.127] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5923 [11:13:8.127] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5924 [11:13:8.135] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5925 [11:13:8.137] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5926 [11:13:8.138] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5927 [11:13:8.138] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5928 [11:13:8.144] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5929 [11:13:8.146] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5930 [11:13:8.147] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5931 [11:13:8.147] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5932 [11:13:8.154] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5933 [11:13:8.156] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5934 [11:13:8.156] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5935 [11:13:8.156] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5936 [11:13:8.164] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5937 [11:13:8.166] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5938 [11:13:8.166] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5939 [11:13:8.166] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5940 [11:13:8.173] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5941 [11:13:8.176] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5942 [11:13:8.176] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5943 [11:13:8.176] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5944 [11:13:8.183] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5945 [11:13:8.185] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5946 [11:13:8.185] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5947 [11:13:8.185] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5948 [11:13:8.193] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5949 [11:13:8.195] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5950 [11:13:8.195] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5951 [11:13:8.195] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5952 [11:13:8.202] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5953 [11:13:8.204] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5954 [11:13:8.204] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5955 [11:13:8.204] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5956 [11:13:8.211] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5957 [11:13:8.213] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5958 [11:13:8.213] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5959 [11:13:8.213] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5960 [11:13:8.220] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5961 [11:13:8.223] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5962 [11:13:8.223] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5963 [11:13:8.223] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5964 [11:13:8.230] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5965 [11:13:8.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5966 [11:13:8.233] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5967 [11:13:8.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5968 [11:13:8.240] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5969 [11:13:8.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5970 [11:13:8.243] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5971 [11:13:8.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5972 [11:13:8.250] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5973 [11:13:8.253] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5974 [11:13:8.253] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5975 [11:13:8.253] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5976 [11:13:8.260] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5977 [11:13:8.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5978 [11:13:8.262] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5979 [11:13:8.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5980 [11:13:8.269] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5981 [11:13:8.271] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5982 [11:13:8.271] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5983 [11:13:8.271] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5984 [11:13:8.278] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5985 [11:13:8.280] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5986 [11:13:8.280] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5987 [11:13:8.280] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5988 [11:13:8.287] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5989 [11:13:8.290] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5990 [11:13:8.290] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5991 [11:13:8.290] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5992 [11:13:8.297] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5993 [11:13:8.299] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5994 [11:13:8.299] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5995 [11:13:8.299] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5996 [11:13:8.306] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 5997 [11:13:8.308] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5998 [11:13:8.308] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 5999 [11:13:8.308] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6000 [11:13:8.316] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6001 [11:13:8.318] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6002 [11:13:8.318] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6003 [11:13:8.318] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6004 [11:13:8.326] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6005 [11:13:8.329] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6006 [11:13:8.329] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6007 [11:13:8.329] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6008 [11:13:8.336] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6009 [11:13:8.338] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6010 [11:13:8.338] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6011 [11:13:8.338] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6012 [11:13:8.346] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6013 [11:13:8.348] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6014 [11:13:8.348] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6015 [11:13:8.348] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6016 [11:13:8.355] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6017 [11:13:8.358] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6018 [11:13:8.358] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6019 [11:13:8.358] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6020 [11:13:8.364] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6021 [11:13:8.367] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6022 [11:13:8.367] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6023 [11:13:8.367] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6024 [11:13:8.375] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6025 [11:13:8.377] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6026 [11:13:8.377] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6027 [11:13:8.377] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6028 [11:13:8.384] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6029 [11:13:8.388] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6030 [11:13:8.388] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6031 [11:13:8.388] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6032 [11:13:8.401] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6033 [11:13:8.404] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6034 [11:13:8.404] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6035 [11:13:8.404] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6036 [11:13:8.414] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6037 [11:13:8.417] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6038 [11:13:8.418] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6039 [11:13:8.418] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6040 [11:13:8.424] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6041 [11:13:8.427] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6042 [11:13:8.427] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6043 [11:13:8.427] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6044 [11:13:8.434] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6045 [11:13:8.436] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6046 [11:13:8.436] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6047 [11:13:8.436] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6048 [11:13:8.443] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6049 [11:13:8.445] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6050 [11:13:8.445] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6051 [11:13:8.445] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6052 [11:13:8.453] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6053 [11:13:8.455] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6054 [11:13:8.455] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6055 [11:13:8.455] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6056 [11:13:8.462] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6057 [11:13:8.465] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6058 [11:13:8.465] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6059 [11:13:8.465] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6060 [11:13:8.472] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6061 [11:13:8.474] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6062 [11:13:8.474] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6063 [11:13:8.474] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6064 [11:13:8.482] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6065 [11:13:8.484] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6066 [11:13:8.484] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6067 [11:13:8.484] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6068 [11:13:8.491] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6069 [11:13:8.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6070 [11:13:8.493] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6071 [11:13:8.493] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6072 [11:13:8.500] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6073 [11:13:8.502] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6074 [11:13:8.502] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6075 [11:13:8.502] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6076 [11:13:8.510] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6077 [11:13:8.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6078 [11:13:8.512] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6079 [11:13:8.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6080 [11:13:8.519] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6081 [11:13:8.522] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6082 [11:13:8.522] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6083 [11:13:8.522] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6084 [11:13:8.529] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6085 [11:13:8.531] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6086 [11:13:8.531] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6087 [11:13:8.531] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6088 [11:13:8.539] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6089 [11:13:8.541] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6090 [11:13:8.541] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6091 [11:13:8.541] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6092 [11:13:8.548] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6093 [11:13:8.550] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6094 [11:13:8.550] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6095 [11:13:8.550] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6096 [11:13:8.557] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6097 [11:13:8.561] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6098 [11:13:8.561] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6099 [11:13:8.561] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6100 [11:13:8.573] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6101 [11:13:8.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6102 [11:13:8.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6103 [11:13:8.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6104 [11:13:8.589] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6105 [11:13:8.591] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6106 [11:13:8.591] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6107 [11:13:8.592] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6108 [11:13:8.598] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6109 [11:13:8.600] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6110 [11:13:8.601] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6111 [11:13:8.601] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6112 [11:13:8.608] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6113 [11:13:8.610] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6114 [11:13:8.610] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6115 [11:13:8.610] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6116 [11:13:8.618] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6117 [11:13:8.620] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6118 [11:13:8.620] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6119 [11:13:8.620] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6120 [11:13:8.628] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6121 [11:13:8.630] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6122 [11:13:8.630] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6123 [11:13:8.630] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6124 [11:13:8.637] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6125 [11:13:8.639] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6126 [11:13:8.639] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6127 [11:13:8.639] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6128 [11:13:8.651] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6129 [11:13:8.655] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6130 [11:13:8.655] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6131 [11:13:8.655] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6132 [11:13:8.664] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6133 [11:13:8.666] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6134 [11:13:8.666] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6135 [11:13:8.666] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6136 [11:13:8.673] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6137 [11:13:8.675] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6138 [11:13:8.675] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6139 [11:13:8.675] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6140 [11:13:8.683] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6141 [11:13:8.685] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6142 [11:13:8.685] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6143 [11:13:8.685] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6144 [11:13:8.692] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6145 [11:13:8.694] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6146 [11:13:8.694] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6147 [11:13:8.694] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6148 [11:13:8.701] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6149 [11:13:8.704] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6150 [11:13:8.704] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6151 [11:13:8.704] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6152 [11:13:8.711] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6153 [11:13:8.714] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6154 [11:13:8.714] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6155 [11:13:8.714] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6156 [11:13:8.721] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6157 [11:13:8.723] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6158 [11:13:8.723] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6159 [11:13:8.723] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6160 [11:13:8.730] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6161 [11:13:8.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6162 [11:13:8.732] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6163 [11:13:8.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6164 [11:13:8.739] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6165 [11:13:8.742] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6166 [11:13:8.742] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6167 [11:13:8.742] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6168 [11:13:8.751] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6169 [11:13:8.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6170 [11:13:8.756] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6171 [11:13:8.756] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6172 [11:13:8.769] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6173 [11:13:8.773] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6174 [11:13:8.773] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6175 [11:13:8.773] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6176 [11:13:8.786] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6177 [11:13:8.791] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6178 [11:13:8.791] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6179 [11:13:8.791] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6180 [11:13:8.799] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6181 [11:13:8.802] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6182 [11:13:8.802] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6183 [11:13:8.802] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6184 [11:13:8.808] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6185 [11:13:8.811] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6186 [11:13:8.811] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6187 [11:13:8.811] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6188 [11:13:8.818] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6189 [11:13:8.820] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6190 [11:13:8.820] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6191 [11:13:8.820] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6192 [11:13:8.828] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6193 [11:13:8.830] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6194 [11:13:8.830] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6195 [11:13:8.830] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6196 [11:13:8.837] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6197 [11:13:8.839] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6198 [11:13:8.839] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6199 [11:13:8.839] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6200 [11:13:8.846] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6201 [11:13:8.848] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6202 [11:13:8.848] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6203 [11:13:8.848] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6204 [11:13:8.856] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6205 [11:13:8.858] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6206 [11:13:8.858] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6207 [11:13:8.858] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6208 [11:13:8.865] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6209 [11:13:8.868] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6210 [11:13:8.868] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6211 [11:13:8.868] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6212 [11:13:8.874] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6213 [11:13:8.877] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6214 [11:13:8.877] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6215 [11:13:8.877] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6216 [11:13:8.884] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6217 [11:13:8.887] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6218 [11:13:8.887] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6219 [11:13:8.887] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6220 [11:13:8.893] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6221 [11:13:8.896] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6222 [11:13:8.896] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6223 [11:13:8.896] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6224 [11:13:8.902] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6225 [11:13:8.905] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6226 [11:13:8.905] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6227 [11:13:8.905] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6228 [11:13:8.912] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6229 [11:13:8.915] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6230 [11:13:8.915] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6231 [11:13:8.915] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6232 [11:13:8.921] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6233 [11:13:8.924] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6234 [11:13:8.924] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6235 [11:13:8.924] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6236 [11:13:8.931] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6237 [11:13:8.934] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6238 [11:13:8.934] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6239 [11:13:8.934] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6240 [11:13:8.940] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6241 [11:13:8.943] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6242 [11:13:8.943] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6243 [11:13:8.943] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6244 [11:13:8.950] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6245 [11:13:8.953] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6246 [11:13:8.953] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6247 [11:13:8.953] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6248 [11:13:8.960] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6249 [11:13:8.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6250 [11:13:8.963] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6251 [11:13:8.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6252 [11:13:8.969] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6253 [11:13:8.972] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6254 [11:13:8.972] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6255 [11:13:8.972] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6256 [11:13:8.979] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6257 [11:13:8.981] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6258 [11:13:8.982] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6259 [11:13:8.982] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6260 [11:13:8.988] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6261 [11:13:8.991] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6262 [11:13:8.991] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6263 [11:13:8.991] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6264 [11:13:8.997] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6265 [11:13:9.0] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6266 [11:13:9.0] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6267 [11:13:9.0] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6268 [11:13:9.7] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6269 [11:13:9.10] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6270 [11:13:9.10] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6271 [11:13:9.10] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6272 [11:13:9.16] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6273 [11:13:9.19] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6274 [11:13:9.19] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6275 [11:13:9.19] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6276 [11:13:9.26] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6277 [11:13:9.28] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6278 [11:13:9.28] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6279 [11:13:9.28] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6280 [11:13:9.36] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6281 [11:13:9.38] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6282 [11:13:9.38] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6283 [11:13:9.38] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6284 [11:13:9.45] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6285 [11:13:9.48] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6286 [11:13:9.48] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6287 [11:13:9.48] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6288 [11:13:9.54] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6289 [11:13:9.57] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6290 [11:13:9.57] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6291 [11:13:9.57] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6292 [11:13:9.64] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6293 [11:13:9.67] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6294 [11:13:9.67] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6295 [11:13:9.67] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6296 [11:13:9.73] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6297 [11:13:9.76] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6298 [11:13:9.76] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6299 [11:13:9.76] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6300 [11:13:9.82] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6301 [11:13:9.85] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6302 [11:13:9.85] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6303 [11:13:9.85] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6304 [11:13:9.91] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6305 [11:13:9.94] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6306 [11:13:9.94] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6307 [11:13:9.94] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6308 [11:13:9.102] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6309 [11:13:9.104] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6310 [11:13:9.104] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6311 [11:13:9.104] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6312 [11:13:9.111] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6313 [11:13:9.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6314 [11:13:9.113] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6315 [11:13:9.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6316 [11:13:9.119] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6317 [11:13:9.122] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6318 [11:13:9.122] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6319 [11:13:9.122] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6320 [11:13:9.130] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6321 [11:13:9.132] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6322 [11:13:9.132] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6323 [11:13:9.132] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6324 [11:13:9.139] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6325 [11:13:9.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6326 [11:13:9.141] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6327 [11:13:9.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6328 [11:13:9.148] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6329 [11:13:9.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6330 [11:13:9.151] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6331 [11:13:9.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6332 [11:13:9.159] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6333 [11:13:9.161] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6334 [11:13:9.161] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6335 [11:13:9.161] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6336 [11:13:9.168] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6337 [11:13:9.170] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6338 [11:13:9.170] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6339 [11:13:9.170] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6340 [11:13:9.178] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6341 [11:13:9.180] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6342 [11:13:9.180] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6343 [11:13:9.180] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6344 [11:13:9.188] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6345 [11:13:9.190] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6346 [11:13:9.190] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6347 [11:13:9.190] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6348 [11:13:9.197] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6349 [11:13:9.199] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6350 [11:13:9.199] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6351 [11:13:9.199] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6352 [11:13:9.208] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6353 [11:13:9.212] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6354 [11:13:9.212] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6355 [11:13:9.212] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6356 [11:13:9.225] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6357 [11:13:9.230] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6358 [11:13:9.230] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6359 [11:13:9.230] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6360 [11:13:9.240] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6361 [11:13:9.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6362 [11:13:9.243] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6363 [11:13:9.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6364 [11:13:9.249] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6365 [11:13:9.252] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6366 [11:13:9.252] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6367 [11:13:9.252] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6368 [11:13:9.259] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6369 [11:13:9.261] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6370 [11:13:9.261] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6371 [11:13:9.261] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6372 [11:13:9.269] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6373 [11:13:9.271] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6374 [11:13:9.271] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6375 [11:13:9.271] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6376 [11:13:9.278] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6377 [11:13:9.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6378 [11:13:9.281] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6379 [11:13:9.281] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6380 [11:13:9.288] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6381 [11:13:9.290] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6382 [11:13:9.290] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6383 [11:13:9.290] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6384 [11:13:9.298] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6385 [11:13:9.300] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6386 [11:13:9.300] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6387 [11:13:9.300] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6388 [11:13:9.307] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6389 [11:13:9.309] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6390 [11:13:9.310] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6391 [11:13:9.310] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6392 [11:13:9.317] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6393 [11:13:9.319] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6394 [11:13:9.319] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6395 [11:13:9.319] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6396 [11:13:9.327] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6397 [11:13:9.329] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6398 [11:13:9.329] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6399 [11:13:9.329] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6400 [11:13:9.340] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6401 [11:13:9.344] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6402 [11:13:9.344] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6403 [11:13:9.344] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6404 [11:13:9.352] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6405 [11:13:9.355] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6406 [11:13:9.355] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6407 [11:13:9.355] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6408 [11:13:9.362] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6409 [11:13:9.365] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6410 [11:13:9.365] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6411 [11:13:9.365] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6412 [11:13:9.372] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6413 [11:13:9.375] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6414 [11:13:9.375] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6415 [11:13:9.375] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6416 [11:13:9.382] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6417 [11:13:9.384] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6418 [11:13:9.384] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6419 [11:13:9.384] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6420 [11:13:9.391] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6421 [11:13:9.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6422 [11:13:9.394] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6423 [11:13:9.394] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6424 [11:13:9.402] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6425 [11:13:9.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6426 [11:13:9.405] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6427 [11:13:9.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6428 [11:13:9.412] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6429 [11:13:9.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6430 [11:13:9.414] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6431 [11:13:9.414] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6432 [11:13:9.421] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6433 [11:13:9.423] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6434 [11:13:9.423] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6435 [11:13:9.423] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6436 [11:13:9.431] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6437 [11:13:9.433] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6438 [11:13:9.433] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6439 [11:13:9.433] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6440 [11:13:9.440] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6441 [11:13:9.442] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6442 [11:13:9.442] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6443 [11:13:9.442] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6444 [11:13:9.449] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6445 [11:13:9.451] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6446 [11:13:9.451] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6447 [11:13:9.451] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6448 [11:13:9.459] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6449 [11:13:9.461] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6450 [11:13:9.461] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6451 [11:13:9.462] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6452 [11:13:9.468] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6453 [11:13:9.470] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6454 [11:13:9.470] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6455 [11:13:9.470] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6456 [11:13:9.477] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6457 [11:13:9.480] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6458 [11:13:9.480] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6459 [11:13:9.480] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6460 [11:13:9.487] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6461 [11:13:9.489] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6462 [11:13:9.490] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6463 [11:13:9.490] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6464 [11:13:9.496] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6465 [11:13:9.499] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6466 [11:13:9.499] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6467 [11:13:9.499] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6468 [11:13:9.505] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6469 [11:13:9.508] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6470 [11:13:9.508] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6471 [11:13:9.508] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6472 [11:13:9.515] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6473 [11:13:9.518] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6474 [11:13:9.518] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6475 [11:13:9.518] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6476 [11:13:9.525] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6477 [11:13:9.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6478 [11:13:9.529] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6479 [11:13:9.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6480 [11:13:9.536] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6481 [11:13:9.539] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6482 [11:13:9.539] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6483 [11:13:9.539] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6484 [11:13:9.546] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6485 [11:13:9.549] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6486 [11:13:9.549] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6487 [11:13:9.549] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6488 [11:13:9.562] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6489 [11:13:9.566] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6490 [11:13:9.566] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6491 [11:13:9.566] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6492 [11:13:9.579] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6493 [11:13:9.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6494 [11:13:9.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6495 [11:13:9.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6496 [11:13:9.596] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6497 [11:13:9.598] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6498 [11:13:9.598] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6499 [11:13:9.598] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6500 [11:13:9.607] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6501 [11:13:9.609] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6502 [11:13:9.609] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6503 [11:13:9.609] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6504 [11:13:9.616] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6505 [11:13:9.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6506 [11:13:9.619] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6507 [11:13:9.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6508 [11:13:9.626] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6509 [11:13:9.628] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6510 [11:13:9.628] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6511 [11:13:9.628] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6512 [11:13:9.636] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6513 [11:13:9.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6514 [11:13:9.638] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6515 [11:13:9.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6516 [11:13:9.645] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6517 [11:13:9.647] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6518 [11:13:9.647] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6519 [11:13:9.647] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6520 [11:13:9.655] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6521 [11:13:9.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6522 [11:13:9.658] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6523 [11:13:9.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6524 [11:13:9.665] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6525 [11:13:9.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6526 [11:13:9.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6527 [11:13:9.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6528 [11:13:9.674] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6529 [11:13:9.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6530 [11:13:9.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6531 [11:13:9.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6532 [11:13:9.683] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6533 [11:13:9.687] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6534 [11:13:9.687] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6535 [11:13:9.687] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6536 [11:13:9.695] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6537 [11:13:9.698] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6538 [11:13:9.698] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6539 [11:13:9.698] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6540 [11:13:9.706] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6541 [11:13:9.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6542 [11:13:9.709] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6543 [11:13:9.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6544 [11:13:9.716] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6545 [11:13:9.718] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6546 [11:13:9.718] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6547 [11:13:9.718] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6548 [11:13:9.726] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6549 [11:13:9.729] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6550 [11:13:9.729] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6551 [11:13:9.729] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6552 [11:13:9.736] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6553 [11:13:9.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6554 [11:13:9.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6555 [11:13:9.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6556 [11:13:9.746] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6557 [11:13:9.748] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6558 [11:13:9.748] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6559 [11:13:9.748] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6560 [11:13:9.755] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6561 [11:13:9.757] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6562 [11:13:9.757] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6563 [11:13:9.757] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6564 [11:13:9.765] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6565 [11:13:9.767] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6566 [11:13:9.767] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6567 [11:13:9.768] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6568 [11:13:9.774] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6569 [11:13:9.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6570 [11:13:9.777] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6571 [11:13:9.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6572 [11:13:9.783] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6573 [11:13:9.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6574 [11:13:9.786] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6575 [11:13:9.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6576 [11:13:9.795] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6577 [11:13:9.799] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6578 [11:13:9.799] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6579 [11:13:9.799] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6580 [11:13:9.812] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6581 [11:13:9.816] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6582 [11:13:9.816] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6583 [11:13:9.816] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6584 [11:13:9.829] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6585 [11:13:9.833] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6586 [11:13:9.833] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6587 [11:13:9.833] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6588 [11:13:9.845] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6589 [11:13:9.849] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6590 [11:13:9.849] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6591 [11:13:9.849] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6592 [11:13:9.858] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6593 [11:13:9.860] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6594 [11:13:9.860] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6595 [11:13:9.860] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6596 [11:13:9.867] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6597 [11:13:9.869] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6598 [11:13:9.869] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6599 [11:13:9.869] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6600 [11:13:9.877] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6601 [11:13:9.879] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6602 [11:13:9.879] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6603 [11:13:9.879] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6604 [11:13:9.886] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6605 [11:13:9.889] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6606 [11:13:9.889] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6607 [11:13:9.889] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6608 [11:13:9.897] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6609 [11:13:9.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6610 [11:13:9.899] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6611 [11:13:9.900] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6612 [11:13:9.908] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6613 [11:13:9.911] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6614 [11:13:9.911] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6615 [11:13:9.911] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6616 [11:13:9.918] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6617 [11:13:9.921] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6618 [11:13:9.921] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6619 [11:13:9.921] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6620 [11:13:9.928] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6621 [11:13:9.931] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6622 [11:13:9.931] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6623 [11:13:9.931] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6624 [11:13:9.938] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6625 [11:13:9.940] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6626 [11:13:9.940] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6627 [11:13:9.940] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6628 [11:13:9.947] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6629 [11:13:9.950] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6630 [11:13:9.950] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6631 [11:13:9.950] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6632 [11:13:9.956] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6633 [11:13:9.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6634 [11:13:9.959] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6635 [11:13:9.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6636 [11:13:9.965] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6637 [11:13:9.969] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6638 [11:13:9.969] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6639 [11:13:9.969] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6640 [11:13:9.979] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6641 [11:13:9.981] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6642 [11:13:9.981] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6643 [11:13:9.981] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6644 [11:13:9.988] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6645 [11:13:9.991] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6646 [11:13:9.991] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6647 [11:13:9.991] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6648 [11:13:9.998] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6649 [11:13:10.0] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6650 [11:13:10.0] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6651 [11:13:10.0] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6652 [11:13:10.7] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6653 [11:13:10.10] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6654 [11:13:10.10] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6655 [11:13:10.10] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6656 [11:13:10.19] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6657 [11:13:10.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6658 [11:13:10.24] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6659 [11:13:10.24] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6660 [11:13:10.37] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6661 [11:13:10.42] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6662 [11:13:10.42] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6663 [11:13:10.42] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6664 [11:13:10.54] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6665 [11:13:10.59] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6666 [11:13:10.59] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6667 [11:13:10.59] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6668 [11:13:10.72] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6669 [11:13:10.76] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6670 [11:13:10.76] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6671 [11:13:10.76] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6672 [11:13:10.90] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6673 [11:13:10.93] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6674 [11:13:10.93] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6675 [11:13:10.93] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6676 [11:13:10.106] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6677 [11:13:10.109] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6678 [11:13:10.110] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6679 [11:13:10.110] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6680 [11:13:10.142] Elapsed:: 32ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6681 [11:13:10.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6682 [11:13:10.159] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6683 [11:13:10.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6684 [11:13:10.176] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6685 [11:13:10.180] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6686 [11:13:10.180] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6687 [11:13:10.180] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6688 [11:13:10.194] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6689 [11:13:10.200] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6690 [11:13:10.200] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6691 [11:13:10.200] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6692 [11:13:10.210] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6693 [11:13:10.213] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6694 [11:13:10.213] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6695 [11:13:10.213] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6696 [11:13:10.220] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6697 [11:13:10.224] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6698 [11:13:10.224] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6699 [11:13:10.224] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6700 [11:13:10.237] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6701 [11:13:10.241] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6702 [11:13:10.241] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6703 [11:13:10.241] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6704 [11:13:10.255] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6705 [11:13:10.259] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6706 [11:13:10.259] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6707 [11:13:10.259] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6708 [11:13:10.272] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6709 [11:13:10.276] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6710 [11:13:10.276] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6711 [11:13:10.276] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6712 [11:13:10.285] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6713 [11:13:10.288] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6714 [11:13:10.288] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6715 [11:13:10.288] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6716 [11:13:10.296] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6717 [11:13:10.299] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6718 [11:13:10.299] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6719 [11:13:10.299] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6720 [11:13:10.306] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6721 [11:13:10.308] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6722 [11:13:10.308] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6723 [11:13:10.308] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6724 [11:13:10.319] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6725 [11:13:10.323] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6726 [11:13:10.323] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6727 [11:13:10.323] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6728 [11:13:10.335] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6729 [11:13:10.338] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6730 [11:13:10.338] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6731 [11:13:10.338] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6732 [11:13:10.345] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6733 [11:13:10.347] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6734 [11:13:10.347] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6735 [11:13:10.347] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6736 [11:13:10.354] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6737 [11:13:10.356] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6738 [11:13:10.356] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6739 [11:13:10.356] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6740 [11:13:10.363] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6741 [11:13:10.365] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6742 [11:13:10.365] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6743 [11:13:10.365] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6744 [11:13:10.374] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6745 [11:13:10.378] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6746 [11:13:10.378] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6747 [11:13:10.378] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6748 [11:13:10.386] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6749 [11:13:10.389] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6750 [11:13:10.389] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6751 [11:13:10.389] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6752 [11:13:10.399] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6753 [11:13:10.403] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6754 [11:13:10.404] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6755 [11:13:10.404] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6756 [11:13:10.415] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6757 [11:13:10.419] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6758 [11:13:10.419] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6759 [11:13:10.419] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6760 [11:13:10.426] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6761 [11:13:10.428] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6762 [11:13:10.428] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6763 [11:13:10.428] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6764 [11:13:10.435] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6765 [11:13:10.438] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6766 [11:13:10.438] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6767 [11:13:10.438] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6768 [11:13:10.445] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6769 [11:13:10.448] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6770 [11:13:10.448] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6771 [11:13:10.448] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6772 [11:13:10.454] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6773 [11:13:10.457] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6774 [11:13:10.457] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6775 [11:13:10.457] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6776 [11:13:10.465] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6777 [11:13:10.467] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6778 [11:13:10.467] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6779 [11:13:10.467] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6780 [11:13:10.480] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6781 [11:13:10.484] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6782 [11:13:10.484] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6783 [11:13:10.484] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6784 [11:13:10.497] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6785 [11:13:10.501] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6786 [11:13:10.501] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6787 [11:13:10.501] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6788 [11:13:10.514] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6789 [11:13:10.518] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6790 [11:13:10.518] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6791 [11:13:10.518] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6792 [11:13:10.531] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6793 [11:13:10.535] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6794 [11:13:10.535] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6795 [11:13:10.535] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6796 [11:13:10.544] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6797 [11:13:10.548] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6798 [11:13:10.548] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6799 [11:13:10.548] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6800 [11:13:10.561] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6801 [11:13:10.565] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6802 [11:13:10.565] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6803 [11:13:10.565] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6804 [11:13:10.577] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6805 [11:13:10.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6806 [11:13:10.583] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6807 [11:13:10.583] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6808 [11:13:10.594] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6809 [11:13:10.598] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6810 [11:13:10.598] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6811 [11:13:10.598] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6812 [11:13:10.606] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6813 [11:13:10.610] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6814 [11:13:10.610] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6815 [11:13:10.610] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6816 [11:13:10.622] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6817 [11:13:10.627] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6818 [11:13:10.627] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6819 [11:13:10.627] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6820 [11:13:10.640] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6821 [11:13:10.645] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6822 [11:13:10.645] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6823 [11:13:10.645] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6824 [11:13:10.655] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6825 [11:13:10.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6826 [11:13:10.658] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6827 [11:13:10.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6828 [11:13:10.665] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6829 [11:13:10.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6830 [11:13:10.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6831 [11:13:10.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6832 [11:13:10.676] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6833 [11:13:10.679] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6834 [11:13:10.679] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6835 [11:13:10.679] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6836 [11:13:10.686] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6837 [11:13:10.689] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6838 [11:13:10.689] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6839 [11:13:10.689] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6840 [11:13:10.699] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6841 [11:13:10.702] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6842 [11:13:10.702] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6843 [11:13:10.702] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6844 [11:13:10.711] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6845 [11:13:10.714] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6846 [11:13:10.714] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6847 [11:13:10.714] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6848 [11:13:10.723] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6849 [11:13:10.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6850 [11:13:10.727] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6851 [11:13:10.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6852 [11:13:10.737] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6853 [11:13:10.742] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6854 [11:13:10.742] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6855 [11:13:10.742] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6856 [11:13:10.755] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6857 [11:13:10.760] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6858 [11:13:10.760] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6859 [11:13:10.760] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6860 [11:13:10.773] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6861 [11:13:10.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6862 [11:13:10.777] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6863 [11:13:10.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6864 [11:13:10.790] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6865 [11:13:10.793] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6866 [11:13:10.793] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6867 [11:13:10.793] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6868 [11:13:10.805] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6869 [11:13:10.808] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6870 [11:13:10.808] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6871 [11:13:10.808] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6872 [11:13:10.821] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6873 [11:13:10.825] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6874 [11:13:10.825] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6875 [11:13:10.825] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6876 [11:13:10.833] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6877 [11:13:10.836] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6878 [11:13:10.836] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6879 [11:13:10.836] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6880 [11:13:10.849] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6881 [11:13:10.854] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6882 [11:13:10.854] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6883 [11:13:10.854] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6884 [11:13:10.867] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6885 [11:13:10.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6886 [11:13:10.871] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6887 [11:13:10.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6888 [11:13:10.884] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6889 [11:13:10.888] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6890 [11:13:10.888] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6891 [11:13:10.888] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6892 [11:13:10.901] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6893 [11:13:10.905] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6894 [11:13:10.905] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6895 [11:13:10.905] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6896 [11:13:10.912] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6897 [11:13:10.915] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6898 [11:13:10.915] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6899 [11:13:10.915] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6900 [11:13:10.923] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6901 [11:13:10.926] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6902 [11:13:10.926] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6903 [11:13:10.926] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6904 [11:13:10.939] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6905 [11:13:10.943] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6906 [11:13:10.943] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6907 [11:13:10.943] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6908 [11:13:10.955] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6909 [11:13:10.958] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6910 [11:13:10.959] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6911 [11:13:10.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6912 [11:13:10.967] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6913 [11:13:10.970] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6914 [11:13:10.970] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6915 [11:13:10.970] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6916 [11:13:10.982] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6917 [11:13:10.985] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6918 [11:13:10.985] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6919 [11:13:10.985] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6920 [11:13:10.994] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6921 [11:13:10.999] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6922 [11:13:10.999] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6923 [11:13:10.999] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6924 [11:13:11.10] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6925 [11:13:11.14] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6926 [11:13:11.14] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6927 [11:13:11.14] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6928 [11:13:11.26] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6929 [11:13:11.30] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6930 [11:13:11.30] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6931 [11:13:11.30] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6932 [11:13:11.40] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6933 [11:13:11.42] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6934 [11:13:11.42] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6935 [11:13:11.42] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6936 [11:13:11.57] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6937 [11:13:11.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6938 [11:13:11.60] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6939 [11:13:11.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6940 [11:13:11.69] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6941 [11:13:11.73] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6942 [11:13:11.73] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6943 [11:13:11.73] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6944 [11:13:11.85] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6945 [11:13:11.89] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6946 [11:13:11.89] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6947 [11:13:11.89] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6948 [11:13:11.100] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6949 [11:13:11.104] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6950 [11:13:11.104] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6951 [11:13:11.104] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6952 [11:13:11.112] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6953 [11:13:11.115] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6954 [11:13:11.115] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6955 [11:13:11.115] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6956 [11:13:11.122] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6957 [11:13:11.125] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6958 [11:13:11.125] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6959 [11:13:11.125] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6960 [11:13:11.132] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6961 [11:13:11.136] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6962 [11:13:11.136] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6963 [11:13:11.136] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6964 [11:13:11.143] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6965 [11:13:11.145] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6966 [11:13:11.146] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6967 [11:13:11.146] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6968 [11:13:11.152] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6969 [11:13:11.155] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6970 [11:13:11.155] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6971 [11:13:11.155] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6972 [11:13:11.163] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6973 [11:13:11.165] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6974 [11:13:11.165] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6975 [11:13:11.166] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6976 [11:13:11.177] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6977 [11:13:11.179] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6978 [11:13:11.179] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6979 [11:13:11.179] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6980 [11:13:11.189] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6981 [11:13:11.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6982 [11:13:11.193] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6983 [11:13:11.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6984 [11:13:11.204] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6985 [11:13:11.207] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6986 [11:13:11.207] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6987 [11:13:11.207] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6988 [11:13:11.214] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6989 [11:13:11.216] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6990 [11:13:11.216] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6991 [11:13:11.216] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6992 [11:13:11.223] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6993 [11:13:11.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6994 [11:13:11.226] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6995 [11:13:11.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6996 [11:13:11.234] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 6997 [11:13:11.237] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6998 [11:13:11.237] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 6999 [11:13:11.237] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7000 [11:13:11.249] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7001 [11:13:11.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7002 [11:13:11.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7003 [11:13:11.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7004 [11:13:11.262] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7005 [11:13:11.265] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7006 [11:13:11.265] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7007 [11:13:11.265] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7008 [11:13:11.273] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7009 [11:13:11.277] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7010 [11:13:11.277] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7011 [11:13:11.277] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7012 [11:13:11.288] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7013 [11:13:11.291] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7014 [11:13:11.291] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7015 [11:13:11.291] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7016 [11:13:11.299] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7017 [11:13:11.301] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7018 [11:13:11.301] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7019 [11:13:11.301] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7020 [11:13:11.311] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7021 [11:13:11.314] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7022 [11:13:11.314] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7023 [11:13:11.314] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7024 [11:13:11.323] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7025 [11:13:11.327] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7026 [11:13:11.327] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7027 [11:13:11.327] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7028 [11:13:11.341] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7029 [11:13:11.344] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7030 [11:13:11.344] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7031 [11:13:11.344] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7032 [11:13:11.351] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7033 [11:13:11.354] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7034 [11:13:11.354] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7035 [11:13:11.354] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7036 [11:13:11.367] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7037 [11:13:11.369] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7038 [11:13:11.370] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7039 [11:13:11.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7040 [11:13:11.378] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7041 [11:13:11.382] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7042 [11:13:11.382] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7043 [11:13:11.382] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7044 [11:13:11.395] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7045 [11:13:11.399] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7046 [11:13:11.399] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7047 [11:13:11.399] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7048 [11:13:11.406] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7049 [11:13:11.410] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7050 [11:13:11.410] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7051 [11:13:11.410] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7052 [11:13:11.417] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7053 [11:13:11.420] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7054 [11:13:11.420] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7055 [11:13:11.420] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7056 [11:13:11.427] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7057 [11:13:11.429] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7058 [11:13:11.429] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7059 [11:13:11.429] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7060 [11:13:11.436] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7061 [11:13:11.439] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7062 [11:13:11.439] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7063 [11:13:11.439] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7064 [11:13:11.446] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7065 [11:13:11.449] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7066 [11:13:11.449] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7067 [11:13:11.449] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7068 [11:13:11.455] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7069 [11:13:11.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7070 [11:13:11.458] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7071 [11:13:11.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7072 [11:13:11.464] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7073 [11:13:11.467] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7074 [11:13:11.467] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7075 [11:13:11.467] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7076 [11:13:11.475] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7077 [11:13:11.477] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7078 [11:13:11.477] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7079 [11:13:11.477] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7080 [11:13:11.484] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7081 [11:13:11.487] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7082 [11:13:11.487] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7083 [11:13:11.487] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7084 [11:13:11.494] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7085 [11:13:11.496] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7086 [11:13:11.496] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7087 [11:13:11.496] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7088 [11:13:11.504] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7089 [11:13:11.507] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7090 [11:13:11.507] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7091 [11:13:11.507] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7092 [11:13:11.514] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7093 [11:13:11.516] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7094 [11:13:11.516] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7095 [11:13:11.516] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7096 [11:13:11.523] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7097 [11:13:11.526] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7098 [11:13:11.526] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7099 [11:13:11.526] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7100 [11:13:11.534] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7101 [11:13:11.536] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7102 [11:13:11.536] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7103 [11:13:11.536] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7104 [11:13:11.547] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7105 [11:13:11.551] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7106 [11:13:11.551] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7107 [11:13:11.551] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7108 [11:13:11.560] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7109 [11:13:11.562] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7110 [11:13:11.562] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7111 [11:13:11.562] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7112 [11:13:11.571] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7113 [11:13:11.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7114 [11:13:11.576] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7115 [11:13:11.576] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7116 [11:13:11.583] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7117 [11:13:11.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7118 [11:13:11.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7119 [11:13:11.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7120 [11:13:11.596] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7121 [11:13:11.598] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7122 [11:13:11.599] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7123 [11:13:11.599] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7124 [11:13:11.611] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7125 [11:13:11.613] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7126 [11:13:11.613] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7127 [11:13:11.613] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7128 [11:13:11.622] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7129 [11:13:11.625] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7130 [11:13:11.625] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7131 [11:13:11.625] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7132 [11:13:11.632] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7133 [11:13:11.634] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7134 [11:13:11.634] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7135 [11:13:11.634] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7136 [11:13:11.641] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7137 [11:13:11.644] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7138 [11:13:11.644] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7139 [11:13:11.644] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7140 [11:13:11.651] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7141 [11:13:11.654] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7142 [11:13:11.654] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7143 [11:13:11.654] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7144 [11:13:11.662] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7145 [11:13:11.664] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7146 [11:13:11.665] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7147 [11:13:11.665] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7148 [11:13:11.672] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7149 [11:13:11.674] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7150 [11:13:11.674] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7151 [11:13:11.674] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7152 [11:13:11.682] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7153 [11:13:11.685] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7154 [11:13:11.685] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7155 [11:13:11.685] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7156 [11:13:11.691] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7157 [11:13:11.694] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7158 [11:13:11.694] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7159 [11:13:11.694] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7160 [11:13:11.701] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7161 [11:13:11.703] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7162 [11:13:11.703] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7163 [11:13:11.703] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7164 [11:13:11.711] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7165 [11:13:11.713] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7166 [11:13:11.713] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7167 [11:13:11.713] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7168 [11:13:11.721] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7169 [11:13:11.725] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7170 [11:13:11.725] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7171 [11:13:11.725] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7172 [11:13:11.733] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7173 [11:13:11.736] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7174 [11:13:11.736] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7175 [11:13:11.736] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7176 [11:13:11.743] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7177 [11:13:11.746] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7178 [11:13:11.746] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7179 [11:13:11.746] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7180 [11:13:11.753] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7181 [11:13:11.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7182 [11:13:11.755] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7183 [11:13:11.756] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7184 [11:13:11.762] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7185 [11:13:11.765] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7186 [11:13:11.765] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7187 [11:13:11.765] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7188 [11:13:11.772] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7189 [11:13:11.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7190 [11:13:11.776] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7191 [11:13:11.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7192 [11:13:11.783] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7193 [11:13:11.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7194 [11:13:11.786] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7195 [11:13:11.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7196 [11:13:11.792] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7197 [11:13:11.795] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7198 [11:13:11.795] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7199 [11:13:11.795] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7200 [11:13:11.802] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7201 [11:13:11.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7202 [11:13:11.805] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7203 [11:13:11.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7204 [11:13:11.813] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7205 [11:13:11.815] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7206 [11:13:11.815] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7207 [11:13:11.815] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7208 [11:13:11.822] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7209 [11:13:11.825] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7210 [11:13:11.825] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7211 [11:13:11.825] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7212 [11:13:11.832] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7213 [11:13:11.834] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7214 [11:13:11.834] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7215 [11:13:11.834] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7216 [11:13:11.842] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7217 [11:13:11.844] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7218 [11:13:11.844] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7219 [11:13:11.844] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7220 [11:13:11.851] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7221 [11:13:11.853] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7222 [11:13:11.853] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7223 [11:13:11.853] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7224 [11:13:11.860] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7225 [11:13:11.863] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7226 [11:13:11.863] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7227 [11:13:11.863] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7228 [11:13:11.874] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7229 [11:13:11.878] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7230 [11:13:11.878] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7231 [11:13:11.878] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7232 [11:13:11.885] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7233 [11:13:11.891] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7234 [11:13:11.893] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7235 [11:13:11.893] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7236 [11:13:11.900] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7237 [11:13:11.902] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7238 [11:13:11.902] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7239 [11:13:11.902] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7240 [11:13:11.911] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7241 [11:13:11.914] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7242 [11:13:11.914] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7243 [11:13:11.914] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7244 [11:13:11.923] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7245 [11:13:11.927] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7246 [11:13:11.928] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7247 [11:13:11.928] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7248 [11:13:11.935] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7249 [11:13:11.938] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7250 [11:13:11.938] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7251 [11:13:11.938] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7252 [11:13:11.945] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7253 [11:13:11.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7254 [11:13:11.949] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7255 [11:13:11.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7256 [11:13:11.959] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7257 [11:13:11.961] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7258 [11:13:11.961] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7259 [11:13:11.961] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7260 [11:13:11.968] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7261 [11:13:11.971] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7262 [11:13:11.971] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7263 [11:13:11.971] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7264 [11:13:11.977] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7265 [11:13:11.980] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7266 [11:13:11.980] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7267 [11:13:11.980] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7268 [11:13:11.989] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7269 [11:13:11.993] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7270 [11:13:11.993] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7271 [11:13:11.993] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7272 [11:13:12.0] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7273 [11:13:12.3] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7274 [11:13:12.3] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7275 [11:13:12.3] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7276 [11:13:12.11] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7277 [11:13:12.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7278 [11:13:12.15] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7279 [11:13:12.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7280 [11:13:12.26] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7281 [11:13:12.29] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7282 [11:13:12.29] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7283 [11:13:12.30] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7284 [11:13:12.38] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7285 [11:13:12.40] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7286 [11:13:12.40] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7287 [11:13:12.40] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7288 [11:13:12.47] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7289 [11:13:12.49] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7290 [11:13:12.49] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7291 [11:13:12.49] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7292 [11:13:12.57] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7293 [11:13:12.59] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7294 [11:13:12.60] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7295 [11:13:12.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7296 [11:13:12.66] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7297 [11:13:12.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7298 [11:13:12.68] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7299 [11:13:12.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7300 [11:13:12.75] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7301 [11:13:12.77] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7302 [11:13:12.77] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7303 [11:13:12.77] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7304 [11:13:12.84] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7305 [11:13:12.86] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7306 [11:13:12.87] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7307 [11:13:12.87] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7308 [11:13:12.94] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7309 [11:13:12.96] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7310 [11:13:12.96] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7311 [11:13:12.96] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7312 [11:13:12.103] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7313 [11:13:12.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7314 [11:13:12.105] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7315 [11:13:12.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7316 [11:13:12.112] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7317 [11:13:12.114] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7318 [11:13:12.114] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7319 [11:13:12.115] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7320 [11:13:12.122] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7321 [11:13:12.124] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7322 [11:13:12.124] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7323 [11:13:12.125] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7324 [11:13:12.131] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7325 [11:13:12.134] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7326 [11:13:12.134] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7327 [11:13:12.134] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7328 [11:13:12.141] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7329 [11:13:12.143] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7330 [11:13:12.143] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7331 [11:13:12.143] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7332 [11:13:12.150] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7333 [11:13:12.153] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7334 [11:13:12.153] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7335 [11:13:12.153] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7336 [11:13:12.160] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7337 [11:13:12.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7338 [11:13:12.162] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7339 [11:13:12.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7340 [11:13:12.169] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7341 [11:13:12.171] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7342 [11:13:12.171] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7343 [11:13:12.171] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7344 [11:13:12.179] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7345 [11:13:12.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7346 [11:13:12.182] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7347 [11:13:12.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7348 [11:13:12.190] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7349 [11:13:12.195] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7350 [11:13:12.195] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7351 [11:13:12.195] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7352 [11:13:12.208] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7353 [11:13:12.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7354 [11:13:12.211] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7355 [11:13:12.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7356 [11:13:12.219] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7357 [11:13:12.222] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7358 [11:13:12.222] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7359 [11:13:12.222] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7360 [11:13:12.231] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7361 [11:13:12.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7362 [11:13:12.234] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7363 [11:13:12.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7364 [11:13:12.242] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7365 [11:13:12.244] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7366 [11:13:12.244] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7367 [11:13:12.244] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7368 [11:13:12.251] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7369 [11:13:12.253] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7370 [11:13:12.253] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7371 [11:13:12.253] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7372 [11:13:12.261] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7373 [11:13:12.264] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7374 [11:13:12.264] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7375 [11:13:12.264] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7376 [11:13:12.271] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7377 [11:13:12.273] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7378 [11:13:12.273] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7379 [11:13:12.273] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7380 [11:13:12.280] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7381 [11:13:12.283] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7382 [11:13:12.283] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7383 [11:13:12.283] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7384 [11:13:12.291] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7385 [11:13:12.293] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7386 [11:13:12.293] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7387 [11:13:12.293] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7388 [11:13:12.300] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7389 [11:13:12.302] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7390 [11:13:12.302] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7391 [11:13:12.302] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7392 [11:13:12.309] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7393 [11:13:12.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7394 [11:13:12.312] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7395 [11:13:12.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7396 [11:13:12.320] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7397 [11:13:12.323] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7398 [11:13:12.323] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7399 [11:13:12.323] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7400 [11:13:12.330] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7401 [11:13:12.333] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7402 [11:13:12.333] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7403 [11:13:12.333] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7404 [11:13:12.341] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7405 [11:13:12.343] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7406 [11:13:12.343] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7407 [11:13:12.343] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7408 [11:13:12.352] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7409 [11:13:12.357] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7410 [11:13:12.357] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7411 [11:13:12.357] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7412 [11:13:12.368] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7413 [11:13:12.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7414 [11:13:12.371] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7415 [11:13:12.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7416 [11:13:12.377] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7417 [11:13:12.380] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7418 [11:13:12.380] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7419 [11:13:12.380] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7420 [11:13:12.390] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7421 [11:13:12.392] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7422 [11:13:12.392] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7423 [11:13:12.392] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7424 [11:13:12.401] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7425 [11:13:12.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7426 [11:13:12.405] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7427 [11:13:12.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7428 [11:13:12.418] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7429 [11:13:12.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7430 [11:13:12.422] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7431 [11:13:12.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7432 [11:13:12.434] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7433 [11:13:12.437] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7434 [11:13:12.437] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7435 [11:13:12.437] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7436 [11:13:12.446] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7437 [11:13:12.448] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7438 [11:13:12.448] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7439 [11:13:12.448] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7440 [11:13:12.455] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7441 [11:13:12.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7442 [11:13:12.458] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7443 [11:13:12.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7444 [11:13:12.466] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7445 [11:13:12.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7446 [11:13:12.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7447 [11:13:12.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7448 [11:13:12.481] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7449 [11:13:12.485] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7450 [11:13:12.485] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7451 [11:13:12.485] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7452 [11:13:12.495] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7453 [11:13:12.497] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7454 [11:13:12.497] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7455 [11:13:12.497] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7456 [11:13:12.504] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7457 [11:13:12.507] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7458 [11:13:12.507] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7459 [11:13:12.507] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7460 [11:13:12.516] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7461 [11:13:12.518] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7462 [11:13:12.518] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7463 [11:13:12.518] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7464 [11:13:12.525] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7465 [11:13:12.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7466 [11:13:12.529] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7467 [11:13:12.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7468 [11:13:12.536] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7469 [11:13:12.539] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7470 [11:13:12.539] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7471 [11:13:12.539] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7472 [11:13:12.549] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7473 [11:13:12.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7474 [11:13:12.552] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7475 [11:13:12.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7476 [11:13:12.559] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7477 [11:13:12.561] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7478 [11:13:12.561] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7479 [11:13:12.561] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7480 [11:13:12.569] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7481 [11:13:12.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7482 [11:13:12.573] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7483 [11:13:12.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7484 [11:13:12.586] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7485 [11:13:12.591] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7486 [11:13:12.591] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7487 [11:13:12.591] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7488 [11:13:12.603] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7489 [11:13:12.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7490 [11:13:12.608] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7491 [11:13:12.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7492 [11:13:12.619] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7493 [11:13:12.622] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7494 [11:13:12.622] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7495 [11:13:12.622] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7496 [11:13:12.634] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7497 [11:13:12.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7498 [11:13:12.638] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7499 [11:13:12.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7500 [11:13:12.646] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7501 [11:13:12.649] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7502 [11:13:12.649] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7503 [11:13:12.649] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7504 [11:13:12.656] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7505 [11:13:12.659] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7506 [11:13:12.659] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7507 [11:13:12.659] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7508 [11:13:12.665] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7509 [11:13:12.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7510 [11:13:12.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7511 [11:13:12.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7512 [11:13:12.676] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7513 [11:13:12.678] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7514 [11:13:12.678] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7515 [11:13:12.678] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7516 [11:13:12.685] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7517 [11:13:12.688] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7518 [11:13:12.688] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7519 [11:13:12.688] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7520 [11:13:12.695] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7521 [11:13:12.697] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7522 [11:13:12.697] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7523 [11:13:12.697] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7524 [11:13:12.705] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7525 [11:13:12.707] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7526 [11:13:12.707] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7527 [11:13:12.707] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7528 [11:13:12.714] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7529 [11:13:12.717] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7530 [11:13:12.717] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7531 [11:13:12.717] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7532 [11:13:12.724] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7533 [11:13:12.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7534 [11:13:12.727] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7535 [11:13:12.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7536 [11:13:12.737] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7537 [11:13:12.741] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7538 [11:13:12.741] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7539 [11:13:12.741] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7540 [11:13:12.753] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7541 [11:13:12.756] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7542 [11:13:12.756] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7543 [11:13:12.756] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7544 [11:13:12.763] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7545 [11:13:12.765] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7546 [11:13:12.765] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7547 [11:13:12.765] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7548 [11:13:12.773] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7549 [11:13:12.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7550 [11:13:12.777] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7551 [11:13:12.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7552 [11:13:12.783] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7553 [11:13:12.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7554 [11:13:12.786] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7555 [11:13:12.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7556 [11:13:12.793] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7557 [11:13:12.796] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7558 [11:13:12.796] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7559 [11:13:12.796] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7560 [11:13:12.802] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7561 [11:13:12.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7562 [11:13:12.805] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7563 [11:13:12.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7564 [11:13:12.812] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7565 [11:13:12.815] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7566 [11:13:12.815] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7567 [11:13:12.815] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7568 [11:13:12.822] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7569 [11:13:12.824] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7570 [11:13:12.824] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7571 [11:13:12.824] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7572 [11:13:12.831] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7573 [11:13:12.833] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7574 [11:13:12.833] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7575 [11:13:12.833] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7576 [11:13:12.841] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7577 [11:13:12.844] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7578 [11:13:12.844] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7579 [11:13:12.844] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7580 [11:13:12.850] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7581 [11:13:12.852] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7582 [11:13:12.853] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7583 [11:13:12.853] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7584 [11:13:12.859] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7585 [11:13:12.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7586 [11:13:12.862] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7587 [11:13:12.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7588 [11:13:12.872] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7589 [11:13:12.877] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7590 [11:13:12.877] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7591 [11:13:12.877] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7592 [11:13:12.889] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7593 [11:13:12.894] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7594 [11:13:12.894] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7595 [11:13:12.894] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7596 [11:13:12.906] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7597 [11:13:12.910] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7598 [11:13:12.910] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7599 [11:13:12.910] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7600 [11:13:12.920] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7601 [11:13:12.923] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7602 [11:13:12.923] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7603 [11:13:12.923] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7604 [11:13:12.935] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7605 [11:13:12.938] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7606 [11:13:12.939] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7607 [11:13:12.939] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7608 [11:13:12.949] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7609 [11:13:12.951] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7610 [11:13:12.951] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7611 [11:13:12.951] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7612 [11:13:12.958] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7613 [11:13:12.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7614 [11:13:12.963] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7615 [11:13:12.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7616 [11:13:12.974] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7617 [11:13:12.978] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7618 [11:13:12.978] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7619 [11:13:12.978] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7620 [11:13:12.989] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7621 [11:13:12.993] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7622 [11:13:12.993] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7623 [11:13:12.993] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7624 [11:13:13.4] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7625 [11:13:13.6] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7626 [11:13:13.6] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7627 [11:13:13.6] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7628 [11:13:13.14] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7629 [11:13:13.20] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7630 [11:13:13.20] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7631 [11:13:13.20] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7632 [11:13:13.32] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7633 [11:13:13.35] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7634 [11:13:13.35] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7635 [11:13:13.35] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7636 [11:13:13.42] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7637 [11:13:13.44] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7638 [11:13:13.44] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7639 [11:13:13.44] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7640 [11:13:13.54] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7641 [11:13:13.57] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7642 [11:13:13.57] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7643 [11:13:13.57] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7644 [11:13:13.66] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7645 [11:13:13.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7646 [11:13:13.68] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7647 [11:13:13.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7648 [11:13:13.75] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7649 [11:13:13.77] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7650 [11:13:13.77] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7651 [11:13:13.77] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7652 [11:13:13.84] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7653 [11:13:13.87] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7654 [11:13:13.87] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7655 [11:13:13.87] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7656 [11:13:13.93] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7657 [11:13:13.96] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7658 [11:13:13.96] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7659 [11:13:13.96] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7660 [11:13:13.102] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7661 [11:13:13.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7662 [11:13:13.105] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7663 [11:13:13.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7664 [11:13:13.112] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7665 [11:13:13.114] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7666 [11:13:13.114] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7667 [11:13:13.114] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7668 [11:13:13.121] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7669 [11:13:13.124] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7670 [11:13:13.124] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7671 [11:13:13.124] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7672 [11:13:13.130] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7673 [11:13:13.133] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7674 [11:13:13.133] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7675 [11:13:13.133] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7676 [11:13:13.140] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7677 [11:13:13.143] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7678 [11:13:13.143] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7679 [11:13:13.143] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7680 [11:13:13.150] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7681 [11:13:13.152] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7682 [11:13:13.152] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7683 [11:13:13.152] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7684 [11:13:13.160] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7685 [11:13:13.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7686 [11:13:13.162] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7687 [11:13:13.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7688 [11:13:13.169] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7689 [11:13:13.171] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7690 [11:13:13.171] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7691 [11:13:13.171] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7692 [11:13:13.179] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7693 [11:13:13.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7694 [11:13:13.182] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7695 [11:13:13.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7696 [11:13:13.188] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7697 [11:13:13.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7698 [11:13:13.191] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7699 [11:13:13.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7700 [11:13:13.198] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7701 [11:13:13.200] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7702 [11:13:13.200] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7703 [11:13:13.200] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7704 [11:13:13.208] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7705 [11:13:13.210] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7706 [11:13:13.210] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7707 [11:13:13.210] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7708 [11:13:13.217] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7709 [11:13:13.219] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7710 [11:13:13.219] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7711 [11:13:13.219] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7712 [11:13:13.226] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7713 [11:13:13.228] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7714 [11:13:13.229] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7715 [11:13:13.229] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7716 [11:13:13.229] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7717 [11:13:13.231] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7718 [11:13:13.231] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7719 [11:13:13.231] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7720 [11:13:13.231] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7721 [11:13:13.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7722 [11:13:13.233] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7723 [11:13:13.233] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7724 [11:13:13.247] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_DataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7725 [11:13:13.252] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7726 [11:13:13.252] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7727 [11:13:13.252] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7728 [11:13:13.261] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Hash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7729 [11:13:13.264] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7730 [11:13:13.264] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7731 [11:13:13.264] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7732 [11:13:13.271] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_LazyWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7733 [11:13:13.274] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7734 [11:13:13.274] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7735 [11:13:13.274] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7736 [11:13:13.281] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_ListCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7737 [11:13:13.284] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7738 [11:13:13.284] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7739 [11:13:13.284] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7740 [11:13:13.291] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_LodashWrapper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7741 [11:13:13.293] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7742 [11:13:13.293] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7743 [11:13:13.293] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7744 [11:13:13.300] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7745 [11:13:13.302] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7746 [11:13:13.302] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7747 [11:13:13.302] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7748 [11:13:13.310] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_MapCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7749 [11:13:13.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7750 [11:13:13.312] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7751 [11:13:13.312] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7752 [11:13:13.323] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Promise.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7753 [11:13:13.327] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7754 [11:13:13.327] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7755 [11:13:13.328] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7756 [11:13:13.335] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7757 [11:13:13.338] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7758 [11:13:13.338] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7759 [11:13:13.338] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7760 [11:13:13.346] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_SetCache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7761 [11:13:13.352] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7762 [11:13:13.352] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7763 [11:13:13.352] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7764 [11:13:13.359] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Stack.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7765 [11:13:13.362] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7766 [11:13:13.362] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7767 [11:13:13.362] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7768 [11:13:13.369] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Symbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7769 [11:13:13.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7770 [11:13:13.371] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7771 [11:13:13.371] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7772 [11:13:13.378] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_Uint8Array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7773 [11:13:13.380] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7774 [11:13:13.380] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7775 [11:13:13.380] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7776 [11:13:13.395] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_WeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7777 [11:13:13.400] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7778 [11:13:13.400] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7779 [11:13:13.400] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7780 [11:13:13.410] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_apply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7781 [11:13:13.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7782 [11:13:13.413] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7783 [11:13:13.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7784 [11:13:13.421] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7785 [11:13:13.423] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7786 [11:13:13.423] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7787 [11:13:13.423] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7788 [11:13:13.431] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7789 [11:13:13.434] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7790 [11:13:13.434] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7791 [11:13:13.434] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7792 [11:13:13.445] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7793 [11:13:13.448] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7794 [11:13:13.448] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7795 [11:13:13.448] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7796 [11:13:13.457] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7797 [11:13:13.461] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7798 [11:13:13.461] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7799 [11:13:13.461] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7800 [11:13:13.470] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7801 [11:13:13.472] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7802 [11:13:13.472] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7803 [11:13:13.472] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7804 [11:13:13.479] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayIncludes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7805 [11:13:13.481] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7806 [11:13:13.481] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7807 [11:13:13.481] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7808 [11:13:13.488] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayIncludesWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7809 [11:13:13.490] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7810 [11:13:13.491] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7811 [11:13:13.491] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7812 [11:13:13.498] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayLikeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7813 [11:13:13.501] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7814 [11:13:13.501] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7815 [11:13:13.501] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7816 [11:13:13.507] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7817 [11:13:13.510] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7818 [11:13:13.510] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7819 [11:13:13.510] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7820 [11:13:13.516] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayPush.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7821 [11:13:13.519] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7822 [11:13:13.519] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7823 [11:13:13.519] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7824 [11:13:13.525] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7825 [11:13:13.528] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7826 [11:13:13.528] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7827 [11:13:13.528] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7828 [11:13:13.535] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7829 [11:13:13.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7830 [11:13:13.540] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7831 [11:13:13.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7832 [11:13:13.561] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7833 [11:13:13.564] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7834 [11:13:13.564] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7835 [11:13:13.564] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7836 [11:13:13.571] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayReduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7837 [11:13:13.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7838 [11:13:13.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7839 [11:13:13.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7840 [11:13:13.588] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arrayShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7841 [11:13:13.591] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7842 [11:13:13.591] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7843 [11:13:13.591] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7844 [11:13:13.597] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_arraySome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7845 [11:13:13.599] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7846 [11:13:13.599] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7847 [11:13:13.599] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7848 [11:13:13.606] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7849 [11:13:13.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7850 [11:13:13.608] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7851 [11:13:13.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7852 [11:13:13.626] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7853 [11:13:13.631] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7854 [11:13:13.631] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7855 [11:13:13.631] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7856 [11:13:13.646] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assignMergeValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7857 [11:13:13.649] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7858 [11:13:13.649] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7859 [11:13:13.649] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7860 [11:13:13.655] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_asciiWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7861 [11:13:13.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7862 [11:13:13.658] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7863 [11:13:13.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7864 [11:13:13.672] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7865 [11:13:13.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7866 [11:13:13.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7867 [11:13:13.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7868 [11:13:13.685] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_assocIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7869 [11:13:13.688] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7870 [11:13:13.688] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7871 [11:13:13.688] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7872 [11:13:13.695] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7873 [11:13:13.697] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7874 [11:13:13.697] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7875 [11:13:13.697] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7876 [11:13:13.707] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7877 [11:13:13.714] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7878 [11:13:13.714] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7879 [11:13:13.714] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7880 [11:13:13.735] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7881 [11:13:13.743] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7882 [11:13:13.743] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7883 [11:13:13.743] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7884 [11:13:13.763] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAssignValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7885 [11:13:13.767] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7886 [11:13:13.767] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7887 [11:13:13.767] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7888 [11:13:13.776] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7889 [11:13:13.779] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7890 [11:13:13.779] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7891 [11:13:13.779] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7892 [11:13:13.787] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7893 [11:13:13.790] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7894 [11:13:13.790] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7895 [11:13:13.790] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7896 [11:13:13.798] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseClamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7897 [11:13:13.800] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7898 [11:13:13.800] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7899 [11:13:13.800] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7900 [11:13:13.807] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseConforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7901 [11:13:13.809] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7902 [11:13:13.809] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7903 [11:13:13.809] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7904 [11:13:13.817] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseConformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7905 [11:13:13.819] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7906 [11:13:13.819] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7907 [11:13:13.819] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7908 [11:13:13.826] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7909 [11:13:13.829] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7910 [11:13:13.829] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7911 [11:13:13.829] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7912 [11:13:13.840] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseDelay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7913 [11:13:13.847] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7914 [11:13:13.847] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7915 [11:13:13.847] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7916 [11:13:13.862] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseDifference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7917 [11:13:13.865] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7918 [11:13:13.865] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7919 [11:13:13.865] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7920 [11:13:13.875] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7921 [11:13:13.878] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7922 [11:13:13.878] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7923 [11:13:13.878] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7924 [11:13:13.888] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7925 [11:13:13.890] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7926 [11:13:13.890] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7927 [11:13:13.890] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7928 [11:13:13.904] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7929 [11:13:13.913] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7930 [11:13:13.913] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7931 [11:13:13.913] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7932 [11:13:13.921] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseExtremum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7933 [11:13:13.923] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7934 [11:13:13.923] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7935 [11:13:13.923] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7936 [11:13:13.930] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7937 [11:13:13.933] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7938 [11:13:13.933] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7939 [11:13:13.933] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7940 [11:13:13.942] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFilter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7941 [11:13:13.945] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7942 [11:13:13.945] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7943 [11:13:13.945] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7944 [11:13:13.954] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFindIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7945 [11:13:13.958] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7946 [11:13:13.958] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7947 [11:13:13.958] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7948 [11:13:13.970] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7949 [11:13:13.973] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7950 [11:13:13.973] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7951 [11:13:13.973] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7952 [11:13:13.982] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFlatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7953 [11:13:13.987] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7954 [11:13:13.987] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7955 [11:13:13.987] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7956 [11:13:13.994] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7957 [11:13:13.997] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7958 [11:13:13.997] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7959 [11:13:13.997] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7960 [11:13:14.4] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7961 [11:13:14.6] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7962 [11:13:14.6] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7963 [11:13:14.6] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7964 [11:13:14.14] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7965 [11:13:14.16] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7966 [11:13:14.16] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7967 [11:13:14.16] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7968 [11:13:14.30] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseForRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7969 [11:13:14.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7970 [11:13:14.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7971 [11:13:14.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7972 [11:13:14.40] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseFunctions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7973 [11:13:14.42] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7974 [11:13:14.42] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7975 [11:13:14.42] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7976 [11:13:14.49] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7977 [11:13:14.52] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7978 [11:13:14.52] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7979 [11:13:14.52] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7980 [11:13:14.61] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGetAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7981 [11:13:14.63] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7982 [11:13:14.63] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7983 [11:13:14.63] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7984 [11:13:14.70] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGetTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7985 [11:13:14.73] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7986 [11:13:14.73] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7987 [11:13:14.73] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7988 [11:13:14.80] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseGt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7989 [11:13:14.82] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7990 [11:13:14.82] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7991 [11:13:14.82] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7992 [11:13:14.90] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7993 [11:13:14.92] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7994 [11:13:14.92] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7995 [11:13:14.92] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7996 [11:13:14.99] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseHasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 7997 [11:13:14.102] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7998 [11:13:14.102] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 7999 [11:13:14.102] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8000 [11:13:14.109] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8001 [11:13:14.111] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8002 [11:13:14.111] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8003 [11:13:14.111] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8004 [11:13:14.119] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8005 [11:13:14.122] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8006 [11:13:14.122] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8007 [11:13:14.122] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8008 [11:13:14.129] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIndexOfWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8009 [11:13:14.132] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8010 [11:13:14.132] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8011 [11:13:14.132] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8012 [11:13:14.139] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIntersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8013 [11:13:14.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8014 [11:13:14.141] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8015 [11:13:14.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8016 [11:13:14.148] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8017 [11:13:14.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8018 [11:13:14.151] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8019 [11:13:14.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8020 [11:13:14.160] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseInvoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8021 [11:13:14.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8022 [11:13:14.162] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8023 [11:13:14.162] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8024 [11:13:14.169] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8025 [11:13:14.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8026 [11:13:14.172] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8027 [11:13:14.172] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8028 [11:13:14.179] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8029 [11:13:14.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8030 [11:13:14.182] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8031 [11:13:14.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8032 [11:13:14.190] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8033 [11:13:14.192] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8034 [11:13:14.192] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8035 [11:13:14.192] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8036 [11:13:14.199] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8037 [11:13:14.202] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8038 [11:13:14.202] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8039 [11:13:14.202] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8040 [11:13:14.209] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsEqualDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8041 [11:13:14.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8042 [11:13:14.211] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8043 [11:13:14.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8044 [11:13:14.219] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8045 [11:13:14.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8046 [11:13:14.221] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8047 [11:13:14.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8048 [11:13:14.228] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8049 [11:13:14.231] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8050 [11:13:14.231] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8051 [11:13:14.231] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8052 [11:13:14.238] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8053 [11:13:14.240] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8054 [11:13:14.240] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8055 [11:13:14.240] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8056 [11:13:14.248] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8057 [11:13:14.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8058 [11:13:14.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8059 [11:13:14.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8060 [11:13:14.258] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8061 [11:13:14.260] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8062 [11:13:14.260] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8063 [11:13:14.260] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8064 [11:13:14.269] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8065 [11:13:14.272] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8066 [11:13:14.272] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8067 [11:13:14.272] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8068 [11:13:14.288] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIsTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8069 [11:13:14.294] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8070 [11:13:14.294] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8071 [11:13:14.294] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8072 [11:13:14.308] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseIteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8073 [11:13:14.310] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8074 [11:13:14.310] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8075 [11:13:14.310] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8076 [11:13:14.317] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8077 [11:13:14.320] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8078 [11:13:14.320] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8079 [11:13:14.320] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8080 [11:13:14.327] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8081 [11:13:14.330] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8082 [11:13:14.330] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8083 [11:13:14.330] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8084 [11:13:14.337] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8085 [11:13:14.340] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8086 [11:13:14.340] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8087 [11:13:14.340] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8088 [11:13:14.347] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseLt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8089 [11:13:14.349] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8090 [11:13:14.349] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8091 [11:13:14.349] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8092 [11:13:14.356] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8093 [11:13:14.358] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8094 [11:13:14.358] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8095 [11:13:14.358] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8096 [11:13:14.367] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMatches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8097 [11:13:14.369] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8098 [11:13:14.369] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8099 [11:13:14.369] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8100 [11:13:14.376] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMatchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8101 [11:13:14.378] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8102 [11:13:14.378] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8103 [11:13:14.378] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8104 [11:13:14.385] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8105 [11:13:14.388] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8106 [11:13:14.388] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8107 [11:13:14.388] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8108 [11:13:14.396] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8109 [11:13:14.398] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8110 [11:13:14.398] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8111 [11:13:14.398] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8112 [11:13:14.405] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseMergeDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8113 [11:13:14.408] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8114 [11:13:14.408] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8115 [11:13:14.408] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8116 [11:13:14.415] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseNth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8117 [11:13:14.417] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8118 [11:13:14.417] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8119 [11:13:14.417] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8120 [11:13:14.426] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseOrderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8121 [11:13:14.429] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8122 [11:13:14.429] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8123 [11:13:14.429] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8124 [11:13:14.435] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8125 [11:13:14.438] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8126 [11:13:14.438] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8127 [11:13:14.438] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8128 [11:13:14.445] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8129 [11:13:14.447] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8130 [11:13:14.447] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8131 [11:13:14.447] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8132 [11:13:14.455] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8133 [11:13:14.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8134 [11:13:14.458] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8135 [11:13:14.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8136 [11:13:14.465] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePropertyDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8137 [11:13:14.467] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8138 [11:13:14.467] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8139 [11:13:14.467] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8140 [11:13:14.474] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePropertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8141 [11:13:14.476] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8142 [11:13:14.476] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8143 [11:13:14.476] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8144 [11:13:14.483] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8145 [11:13:14.486] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8146 [11:13:14.486] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8147 [11:13:14.486] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8148 [11:13:14.494] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_basePullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8149 [11:13:14.497] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8150 [11:13:14.497] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8151 [11:13:14.497] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8152 [11:13:14.504] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRandom.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8153 [11:13:14.506] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8154 [11:13:14.506] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8155 [11:13:14.506] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8156 [11:13:14.513] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8157 [11:13:14.516] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8158 [11:13:14.516] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8159 [11:13:14.516] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8160 [11:13:14.523] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseReduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8161 [11:13:14.526] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8162 [11:13:14.526] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8163 [11:13:14.526] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8164 [11:13:14.533] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRepeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8165 [11:13:14.535] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8166 [11:13:14.535] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8167 [11:13:14.535] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8168 [11:13:14.543] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8169 [11:13:14.545] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8170 [11:13:14.545] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8171 [11:13:14.545] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8172 [11:13:14.553] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8173 [11:13:14.555] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8174 [11:13:14.555] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8175 [11:13:14.555] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8176 [11:13:14.562] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8177 [11:13:14.565] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8178 [11:13:14.565] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8179 [11:13:14.565] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8180 [11:13:14.572] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8181 [11:13:14.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8182 [11:13:14.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8183 [11:13:14.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8184 [11:13:14.584] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSetData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8185 [11:13:14.587] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8186 [11:13:14.587] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8187 [11:13:14.587] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8188 [11:13:14.598] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSetToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8189 [11:13:14.601] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8190 [11:13:14.601] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8191 [11:13:14.601] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8192 [11:13:14.615] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseShuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8193 [11:13:14.620] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8194 [11:13:14.620] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8195 [11:13:14.620] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8196 [11:13:14.635] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8197 [11:13:14.641] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8198 [11:13:14.641] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8199 [11:13:14.641] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8200 [11:13:14.661] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8201 [11:13:14.667] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8202 [11:13:14.667] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8203 [11:13:14.667] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8204 [11:13:14.675] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8205 [11:13:14.678] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8206 [11:13:14.678] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8207 [11:13:14.678] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8208 [11:13:14.685] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8209 [11:13:14.688] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8210 [11:13:14.688] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8211 [11:13:14.688] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8212 [11:13:14.697] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8213 [11:13:14.699] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8214 [11:13:14.699] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8215 [11:13:14.699] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8216 [11:13:14.706] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8217 [11:13:14.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8218 [11:13:14.709] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8219 [11:13:14.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8220 [11:13:14.716] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseSum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8221 [11:13:14.718] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8222 [11:13:14.718] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8223 [11:13:14.718] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8224 [11:13:14.726] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseTimes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8225 [11:13:14.729] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8226 [11:13:14.729] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8227 [11:13:14.729] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8228 [11:13:14.736] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8229 [11:13:14.738] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8230 [11:13:14.738] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8231 [11:13:14.738] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8232 [11:13:14.745] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8233 [11:13:14.747] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8234 [11:13:14.747] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8235 [11:13:14.747] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8236 [11:13:14.756] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8237 [11:13:14.758] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8238 [11:13:14.758] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8239 [11:13:14.758] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8240 [11:13:14.766] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUnary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8241 [11:13:14.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8242 [11:13:14.769] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8243 [11:13:14.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8244 [11:13:14.777] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUnset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8245 [11:13:14.779] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8246 [11:13:14.779] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8247 [11:13:14.779] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8248 [11:13:14.787] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8249 [11:13:14.790] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8250 [11:13:14.790] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8251 [11:13:14.790] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8252 [11:13:14.797] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8253 [11:13:14.799] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8254 [11:13:14.799] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8255 [11:13:14.799] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8256 [11:13:14.806] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseUpdate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8257 [11:13:14.808] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8258 [11:13:14.808] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8259 [11:13:14.808] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8260 [11:13:14.815] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8261 [11:13:14.819] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8262 [11:13:14.819] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8263 [11:13:14.819] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8264 [11:13:14.826] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseXor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8265 [11:13:14.829] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8266 [11:13:14.829] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8267 [11:13:14.829] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8268 [11:13:14.836] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseWrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8269 [11:13:14.838] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8270 [11:13:14.838] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8271 [11:13:14.838] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8272 [11:13:14.845] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_baseZipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8273 [11:13:14.847] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8274 [11:13:14.847] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8275 [11:13:14.847] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8276 [11:13:14.868] Elapsed:: 21ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8277 [11:13:14.874] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8278 [11:13:14.875] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8279 [11:13:14.875] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8280 [11:13:14.884] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8281 [11:13:14.887] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8282 [11:13:14.887] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8283 [11:13:14.887] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8284 [11:13:14.895] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8285 [11:13:14.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8286 [11:13:14.898] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8287 [11:13:14.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8288 [11:13:14.918] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8289 [11:13:14.924] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8290 [11:13:14.924] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8291 [11:13:14.925] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8292 [11:13:14.933] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8293 [11:13:14.936] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8294 [11:13:14.936] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8295 [11:13:14.936] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8296 [11:13:14.943] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_castSlice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8297 [11:13:14.945] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8298 [11:13:14.945] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8299 [11:13:14.945] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8300 [11:13:14.972] Elapsed:: 27ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_charsEndIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8301 [11:13:14.977] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8302 [11:13:14.977] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8303 [11:13:14.977] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8304 [11:13:14.991] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_charsStartIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8305 [11:13:14.994] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8306 [11:13:14.994] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8307 [11:13:14.994] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8308 [11:13:15.5] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8309 [11:13:15.8] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8310 [11:13:15.8] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8311 [11:13:15.8] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8312 [11:13:15.17] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8313 [11:13:15.19] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8314 [11:13:15.19] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8315 [11:13:15.19] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8316 [11:13:15.26] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneDataView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8317 [11:13:15.29] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8318 [11:13:15.29] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8319 [11:13:15.29] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8320 [11:13:15.35] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8321 [11:13:15.38] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8322 [11:13:15.38] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8323 [11:13:15.38] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8324 [11:13:15.45] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8325 [11:13:15.48] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8326 [11:13:15.48] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8327 [11:13:15.48] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8328 [11:13:15.55] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_cloneTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8329 [11:13:15.57] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8330 [11:13:15.58] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8331 [11:13:15.58] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8332 [11:13:15.64] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_compareAscending.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8333 [11:13:15.67] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8334 [11:13:15.67] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8335 [11:13:15.67] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8336 [11:13:15.74] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_compareMultiple.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8337 [11:13:15.76] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8338 [11:13:15.76] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8339 [11:13:15.76] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8340 [11:13:15.84] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_composeArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8341 [11:13:15.86] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8342 [11:13:15.86] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8343 [11:13:15.86] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8344 [11:13:15.93] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_composeArgsRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8345 [11:13:15.95] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8346 [11:13:15.95] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8347 [11:13:15.95] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8348 [11:13:15.102] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copyArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8349 [11:13:15.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8350 [11:13:15.105] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8351 [11:13:15.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8352 [11:13:15.113] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copyObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8353 [11:13:15.115] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8354 [11:13:15.115] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8355 [11:13:15.115] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8356 [11:13:15.122] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copySymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8357 [11:13:15.124] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8358 [11:13:15.124] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8359 [11:13:15.124] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8360 [11:13:15.131] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_copySymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8361 [11:13:15.134] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8362 [11:13:15.134] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8363 [11:13:15.134] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8364 [11:13:15.141] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_coreJsData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8365 [11:13:15.144] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8366 [11:13:15.144] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8367 [11:13:15.144] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8368 [11:13:15.151] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_countHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8369 [11:13:15.153] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8370 [11:13:15.153] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8371 [11:13:15.153] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8372 [11:13:15.160] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createAggregator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8373 [11:13:15.163] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8374 [11:13:15.163] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8375 [11:13:15.163] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8376 [11:13:15.171] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createAssigner.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8377 [11:13:15.173] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8378 [11:13:15.173] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8379 [11:13:15.173] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8380 [11:13:15.180] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBaseEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8381 [11:13:15.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8382 [11:13:15.182] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8383 [11:13:15.182] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8384 [11:13:15.189] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8385 [11:13:15.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8386 [11:13:15.192] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8387 [11:13:15.192] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8388 [11:13:15.198] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createBaseFor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8389 [11:13:15.206] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8390 [11:13:15.206] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8391 [11:13:15.206] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8392 [11:13:15.226] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCaseFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8393 [11:13:15.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8394 [11:13:15.234] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8395 [11:13:15.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8396 [11:13:15.254] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCompounder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8397 [11:13:15.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8398 [11:13:15.262] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8399 [11:13:15.262] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8400 [11:13:15.273] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCtor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8401 [11:13:15.276] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8402 [11:13:15.276] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8403 [11:13:15.276] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8404 [11:13:15.296] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createCurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8405 [11:13:15.299] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8406 [11:13:15.299] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8407 [11:13:15.299] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8408 [11:13:15.309] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createFind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8409 [11:13:15.315] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8410 [11:13:15.315] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8411 [11:13:15.315] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8412 [11:13:15.325] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createFlow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8413 [11:13:15.328] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8414 [11:13:15.328] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8415 [11:13:15.328] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8416 [11:13:15.336] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createHybrid.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8417 [11:13:15.339] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8418 [11:13:15.339] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8419 [11:13:15.339] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8420 [11:13:15.346] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createInverter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8421 [11:13:15.348] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8422 [11:13:15.348] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8423 [11:13:15.348] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8424 [11:13:15.355] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createMathOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8425 [11:13:15.358] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8426 [11:13:15.358] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8427 [11:13:15.358] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8428 [11:13:15.366] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createOver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8429 [11:13:15.368] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8430 [11:13:15.368] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8431 [11:13:15.368] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8432 [11:13:15.375] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createPadding.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8433 [11:13:15.377] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8434 [11:13:15.377] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8435 [11:13:15.377] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8436 [11:13:15.384] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createPartial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8437 [11:13:15.387] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8438 [11:13:15.387] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8439 [11:13:15.387] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8440 [11:13:15.394] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8441 [11:13:15.397] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8442 [11:13:15.397] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8443 [11:13:15.397] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8444 [11:13:15.404] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRecurry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8445 [11:13:15.406] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8446 [11:13:15.406] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8447 [11:13:15.406] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8448 [11:13:15.413] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRelationalOperation.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8449 [11:13:15.415] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8450 [11:13:15.415] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8451 [11:13:15.415] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8452 [11:13:15.422] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createRound.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8453 [11:13:15.426] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8454 [11:13:15.426] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8455 [11:13:15.426] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8456 [11:13:15.433] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8457 [11:13:15.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8458 [11:13:15.435] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8459 [11:13:15.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8460 [11:13:15.442] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8461 [11:13:15.444] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8462 [11:13:15.445] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8463 [11:13:15.445] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8464 [11:13:15.451] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_createWrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8465 [11:13:15.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8466 [11:13:15.454] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8467 [11:13:15.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8468 [11:13:15.473] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customDefaultsAssignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8469 [11:13:15.477] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8470 [11:13:15.477] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8471 [11:13:15.478] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8472 [11:13:15.485] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customDefaultsMerge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8473 [11:13:15.488] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8474 [11:13:15.488] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8475 [11:13:15.488] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8476 [11:13:15.495] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_customOmitClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8477 [11:13:15.498] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8478 [11:13:15.498] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8479 [11:13:15.498] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8480 [11:13:15.507] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_deburrLetter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8481 [11:13:15.509] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8482 [11:13:15.509] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8483 [11:13:15.509] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8484 [11:13:15.516] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_defineProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8485 [11:13:15.519] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8486 [11:13:15.519] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8487 [11:13:15.519] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8488 [11:13:15.526] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalArrays.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8489 [11:13:15.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8490 [11:13:15.529] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8491 [11:13:15.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8492 [11:13:15.537] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8493 [11:13:15.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8494 [11:13:15.540] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8495 [11:13:15.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8496 [11:13:15.549] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_equalObjects.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8497 [11:13:15.551] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8498 [11:13:15.551] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8499 [11:13:15.551] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8500 [11:13:15.558] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_escapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8501 [11:13:15.560] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8502 [11:13:15.561] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8503 [11:13:15.561] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8504 [11:13:15.569] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_escapeStringChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8505 [11:13:15.571] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8506 [11:13:15.571] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8507 [11:13:15.571] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8508 [11:13:15.578] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_flatRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8509 [11:13:15.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8510 [11:13:15.580] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8511 [11:13:15.580] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8512 [11:13:15.587] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_freeGlobal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8513 [11:13:15.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8514 [11:13:15.590] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8515 [11:13:15.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8516 [11:13:15.597] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getAllKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8517 [11:13:15.600] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8518 [11:13:15.600] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8519 [11:13:15.600] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8520 [11:13:15.607] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getAllKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8521 [11:13:15.610] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8522 [11:13:15.610] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8523 [11:13:15.610] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8524 [11:13:15.617] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8525 [11:13:15.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8526 [11:13:15.619] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8527 [11:13:15.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8528 [11:13:15.626] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getFuncName.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8529 [11:13:15.629] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8530 [11:13:15.629] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8531 [11:13:15.629] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8532 [11:13:15.636] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getHolder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8533 [11:13:15.639] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8534 [11:13:15.639] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8535 [11:13:15.639] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8536 [11:13:15.646] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getMapData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8537 [11:13:15.648] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8538 [11:13:15.648] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8539 [11:13:15.648] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8540 [11:13:15.655] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getMatchData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8541 [11:13:15.659] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8542 [11:13:15.659] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8543 [11:13:15.659] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8544 [11:13:15.672] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8545 [11:13:15.674] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8546 [11:13:15.674] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8547 [11:13:15.674] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8548 [11:13:15.681] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8549 [11:13:15.683] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8550 [11:13:15.684] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8551 [11:13:15.684] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8552 [11:13:15.690] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getRawTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8553 [11:13:15.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8554 [11:13:15.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8555 [11:13:15.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8556 [11:13:15.701] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getSymbols.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8557 [11:13:15.703] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8558 [11:13:15.703] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8559 [11:13:15.703] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8560 [11:13:15.710] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getSymbolsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8561 [11:13:15.712] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8562 [11:13:15.712] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8563 [11:13:15.712] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8564 [11:13:15.720] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8565 [11:13:15.724] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8566 [11:13:15.724] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8567 [11:13:15.724] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8568 [11:13:15.740] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8569 [11:13:15.746] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8570 [11:13:15.746] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8571 [11:13:15.747] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8572 [11:13:15.761] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getView.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8573 [11:13:15.764] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8574 [11:13:15.764] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8575 [11:13:15.764] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8576 [11:13:15.771] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_getWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8577 [11:13:15.773] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8578 [11:13:15.773] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8579 [11:13:15.773] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8580 [11:13:15.780] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8581 [11:13:15.782] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8582 [11:13:15.782] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8583 [11:13:15.782] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8584 [11:13:15.790] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasUnicode.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8585 [11:13:15.792] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8586 [11:13:15.793] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8587 [11:13:15.793] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8588 [11:13:15.799] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hasUnicodeWord.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8589 [11:13:15.802] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8590 [11:13:15.802] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8591 [11:13:15.802] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8592 [11:13:15.809] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8593 [11:13:15.811] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8594 [11:13:15.811] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8595 [11:13:15.811] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8596 [11:13:15.819] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8597 [11:13:15.822] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8598 [11:13:15.822] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8599 [11:13:15.822] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8600 [11:13:15.829] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8601 [11:13:15.831] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8602 [11:13:15.831] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8603 [11:13:15.831] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8604 [11:13:15.838] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8605 [11:13:15.841] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8606 [11:13:15.841] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8607 [11:13:15.841] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8608 [11:13:15.848] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_hashSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8609 [11:13:15.851] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8610 [11:13:15.851] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8611 [11:13:15.851] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8612 [11:13:15.858] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8613 [11:13:15.860] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8614 [11:13:15.860] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8615 [11:13:15.860] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8616 [11:13:15.869] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneByTag.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8617 [11:13:15.875] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8618 [11:13:15.875] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8619 [11:13:15.875] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8620 [11:13:15.893] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_initCloneObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8621 [11:13:15.897] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8622 [11:13:15.897] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8623 [11:13:15.897] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8624 [11:13:15.904] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_insertWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8625 [11:13:15.906] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8626 [11:13:15.906] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8627 [11:13:15.906] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8628 [11:13:15.913] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isFlattenable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8629 [11:13:15.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8630 [11:13:15.916] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8631 [11:13:15.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8632 [11:13:15.924] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8633 [11:13:15.928] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8634 [11:13:15.928] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8635 [11:13:15.928] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8636 [11:13:15.935] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isIterateeCall.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8637 [11:13:15.937] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8638 [11:13:15.937] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8639 [11:13:15.937] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8640 [11:13:15.944] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8641 [11:13:15.946] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8642 [11:13:15.947] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8643 [11:13:15.947] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8644 [11:13:15.953] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isKeyable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8645 [11:13:15.956] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8646 [11:13:15.956] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8647 [11:13:15.956] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8648 [11:13:15.966] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isLaziable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8649 [11:13:15.968] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8650 [11:13:15.968] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8651 [11:13:15.968] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8652 [11:13:15.975] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isMaskable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8653 [11:13:15.977] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8654 [11:13:15.977] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8655 [11:13:15.977] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8656 [11:13:15.984] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isMasked.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8657 [11:13:15.987] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8658 [11:13:15.987] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8659 [11:13:15.987] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8660 [11:13:15.997] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isPrototype.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8661 [11:13:15.999] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8662 [11:13:15.999] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8663 [11:13:15.999] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8664 [11:13:16.6] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_isStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8665 [11:13:16.9] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8666 [11:13:16.9] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8667 [11:13:16.9] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8668 [11:13:16.16] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_iteratorToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8669 [11:13:16.18] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8670 [11:13:16.18] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8671 [11:13:16.18] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8672 [11:13:16.28] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8673 [11:13:16.31] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8674 [11:13:16.31] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8675 [11:13:16.32] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8676 [11:13:16.43] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8677 [11:13:16.48] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8678 [11:13:16.48] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8679 [11:13:16.48] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8680 [11:13:16.65] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_lazyValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8681 [11:13:16.70] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8682 [11:13:16.70] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8683 [11:13:16.70] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8684 [11:13:16.82] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8685 [11:13:16.84] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8686 [11:13:16.84] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8687 [11:13:16.84] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8688 [11:13:16.91] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8689 [11:13:16.94] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8690 [11:13:16.94] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8691 [11:13:16.94] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8692 [11:13:16.101] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8693 [11:13:16.103] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8694 [11:13:16.104] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8695 [11:13:16.104] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8696 [11:13:16.110] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8697 [11:13:16.117] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8698 [11:13:16.117] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8699 [11:13:16.118] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8700 [11:13:16.138] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_listCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8701 [11:13:16.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8702 [11:13:16.141] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8703 [11:13:16.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8704 [11:13:16.148] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8705 [11:13:16.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8706 [11:13:16.150] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8707 [11:13:16.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8708 [11:13:16.157] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8709 [11:13:16.160] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8710 [11:13:16.160] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8711 [11:13:16.160] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8712 [11:13:16.179] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8713 [11:13:16.185] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8714 [11:13:16.185] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8715 [11:13:16.185] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8716 [11:13:16.197] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8717 [11:13:16.200] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8718 [11:13:16.200] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8719 [11:13:16.200] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8720 [11:13:16.207] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapCacheSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8721 [11:13:16.209] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8722 [11:13:16.209] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8723 [11:13:16.209] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8724 [11:13:16.217] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mapToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8725 [11:13:16.220] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8726 [11:13:16.220] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8727 [11:13:16.220] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8728 [11:13:16.227] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_matchesStrictComparable.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8729 [11:13:16.229] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8730 [11:13:16.229] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8731 [11:13:16.229] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8732 [11:13:16.236] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_memoizeCapped.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8733 [11:13:16.239] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8734 [11:13:16.239] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8735 [11:13:16.239] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8736 [11:13:16.247] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_mergeData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8737 [11:13:16.249] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8738 [11:13:16.250] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8739 [11:13:16.250] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8740 [11:13:16.256] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_metaMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8741 [11:13:16.259] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8742 [11:13:16.259] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8743 [11:13:16.259] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8744 [11:13:16.266] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeCreate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8745 [11:13:16.268] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8746 [11:13:16.268] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8747 [11:13:16.268] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8748 [11:13:16.277] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8749 [11:13:16.279] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8750 [11:13:16.279] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8751 [11:13:16.279] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8752 [11:13:16.286] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nativeKeysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8753 [11:13:16.289] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8754 [11:13:16.289] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8755 [11:13:16.289] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8756 [11:13:16.296] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_nodeUtil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8757 [11:13:16.299] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8758 [11:13:16.299] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8759 [11:13:16.299] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8760 [11:13:16.306] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_objectToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8761 [11:13:16.309] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8762 [11:13:16.309] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8763 [11:13:16.309] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8764 [11:13:16.316] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_overArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8765 [11:13:16.319] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8766 [11:13:16.319] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8767 [11:13:16.319] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8768 [11:13:16.327] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_overRest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8769 [11:13:16.330] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8770 [11:13:16.330] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8771 [11:13:16.330] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8772 [11:13:16.337] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_parent.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8773 [11:13:16.340] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8774 [11:13:16.340] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8775 [11:13:16.340] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8776 [11:13:16.348] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reEscape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8777 [11:13:16.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8778 [11:13:16.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8779 [11:13:16.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8780 [11:13:16.358] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reEvaluate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8781 [11:13:16.360] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8782 [11:13:16.360] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8783 [11:13:16.360] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8784 [11:13:16.367] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reInterpolate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8785 [11:13:16.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8786 [11:13:16.370] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8787 [11:13:16.370] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8788 [11:13:16.378] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_realNames.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8789 [11:13:16.381] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8790 [11:13:16.381] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8791 [11:13:16.381] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8792 [11:13:16.388] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_reorder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8793 [11:13:16.391] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8794 [11:13:16.391] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8795 [11:13:16.391] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8796 [11:13:16.398] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_replaceHolders.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8797 [11:13:16.401] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8798 [11:13:16.401] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8799 [11:13:16.401] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8800 [11:13:16.409] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_root.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8801 [11:13:16.412] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8802 [11:13:16.412] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8803 [11:13:16.412] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8804 [11:13:16.419] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_safeGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8805 [11:13:16.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8806 [11:13:16.422] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8807 [11:13:16.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8808 [11:13:16.430] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setCacheAdd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8809 [11:13:16.433] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8810 [11:13:16.433] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8811 [11:13:16.433] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8812 [11:13:16.441] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setCacheHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8813 [11:13:16.444] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8814 [11:13:16.444] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8815 [11:13:16.444] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8816 [11:13:16.452] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setData.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8817 [11:13:16.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8818 [11:13:16.454] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8819 [11:13:16.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8820 [11:13:16.461] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8821 [11:13:16.464] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8822 [11:13:16.464] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8823 [11:13:16.464] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8824 [11:13:16.471] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8825 [11:13:16.475] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8826 [11:13:16.475] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8827 [11:13:16.475] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8828 [11:13:16.482] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8829 [11:13:16.485] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8830 [11:13:16.485] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8831 [11:13:16.485] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8832 [11:13:16.492] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_setWrapToString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8833 [11:13:16.494] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8834 [11:13:16.494] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8835 [11:13:16.494] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8836 [11:13:16.502] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_shortOut.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8837 [11:13:16.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8838 [11:13:16.505] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8839 [11:13:16.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8840 [11:13:16.513] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_shuffleSelf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8841 [11:13:16.515] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8842 [11:13:16.515] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8843 [11:13:16.515] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8844 [11:13:16.523] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackClear.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8845 [11:13:16.525] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8846 [11:13:16.525] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8847 [11:13:16.525] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8848 [11:13:16.532] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackDelete.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8849 [11:13:16.534] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8850 [11:13:16.534] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8851 [11:13:16.534] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8852 [11:13:16.549] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackGet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8853 [11:13:16.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8854 [11:13:16.552] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8855 [11:13:16.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8856 [11:13:16.559] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackHas.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8857 [11:13:16.562] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8858 [11:13:16.562] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8859 [11:13:16.562] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8860 [11:13:16.571] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stackSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8861 [11:13:16.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8862 [11:13:16.573] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8863 [11:13:16.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8864 [11:13:16.582] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_strictIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8865 [11:13:16.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8866 [11:13:16.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8867 [11:13:16.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8868 [11:13:16.593] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_strictLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8869 [11:13:16.597] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8870 [11:13:16.597] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8871 [11:13:16.597] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8872 [11:13:16.605] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8873 [11:13:16.607] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8874 [11:13:16.607] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8875 [11:13:16.607] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8876 [11:13:16.615] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8877 [11:13:16.618] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8878 [11:13:16.618] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8879 [11:13:16.618] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8880 [11:13:16.625] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_stringToPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8881 [11:13:16.627] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8882 [11:13:16.627] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8883 [11:13:16.627] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8884 [11:13:16.634] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_toKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8885 [11:13:16.637] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8886 [11:13:16.637] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8887 [11:13:16.637] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8888 [11:13:16.644] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_toSource.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8889 [11:13:16.647] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8890 [11:13:16.647] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8891 [11:13:16.647] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8892 [11:13:16.654] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unescapeHtmlChar.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8893 [11:13:16.657] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8894 [11:13:16.657] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8895 [11:13:16.657] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8896 [11:13:16.664] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8897 [11:13:16.666] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8898 [11:13:16.666] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8899 [11:13:16.666] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8900 [11:13:16.673] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeToArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8901 [11:13:16.676] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8902 [11:13:16.676] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8903 [11:13:16.676] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8904 [11:13:16.684] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_unicodeWords.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8905 [11:13:16.686] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8906 [11:13:16.686] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8907 [11:13:16.686] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8908 [11:13:16.694] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_updateWrapDetails.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8909 [11:13:16.696] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8910 [11:13:16.696] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8911 [11:13:16.696] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8912 [11:13:16.703] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/_wrapperClone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8913 [11:13:16.706] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8914 [11:13:16.706] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8915 [11:13:16.706] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8916 [11:13:16.714] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/add.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8917 [11:13:16.716] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8918 [11:13:16.716] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8919 [11:13:16.716] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8920 [11:13:16.723] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/after.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8921 [11:13:16.726] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8922 [11:13:16.726] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8923 [11:13:16.726] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8924 [11:13:16.733] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/array.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8925 [11:13:16.736] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8926 [11:13:16.736] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8927 [11:13:16.736] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8928 [11:13:16.744] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/ary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8929 [11:13:16.746] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8930 [11:13:16.746] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8931 [11:13:16.746] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8932 [11:13:16.753] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assign.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8933 [11:13:16.756] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8934 [11:13:16.756] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8935 [11:13:16.756] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8936 [11:13:16.763] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8937 [11:13:16.765] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8938 [11:13:16.765] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8939 [11:13:16.765] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8940 [11:13:16.773] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignInWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8941 [11:13:16.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8942 [11:13:16.777] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8943 [11:13:16.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8944 [11:13:16.784] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/assignWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8945 [11:13:16.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8946 [11:13:16.786] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8947 [11:13:16.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8948 [11:13:16.793] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/at.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8949 [11:13:16.795] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8950 [11:13:16.795] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8951 [11:13:16.795] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8952 [11:13:16.802] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/attempt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8953 [11:13:16.806] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8954 [11:13:16.806] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8955 [11:13:16.806] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8956 [11:13:16.823] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/before.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8957 [11:13:16.827] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8958 [11:13:16.827] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8959 [11:13:16.827] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8960 [11:13:16.834] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bind.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8961 [11:13:16.836] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8962 [11:13:16.836] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8963 [11:13:16.836] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8964 [11:13:16.843] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bindAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8965 [11:13:16.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8966 [11:13:16.846] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8967 [11:13:16.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8968 [11:13:16.854] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/bindKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8969 [11:13:16.858] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8970 [11:13:16.858] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8971 [11:13:16.858] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8972 [11:13:16.875] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/camelCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8973 [11:13:16.881] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8974 [11:13:16.881] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8975 [11:13:16.881] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8976 [11:13:16.891] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/capitalize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8977 [11:13:16.893] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8978 [11:13:16.893] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8979 [11:13:16.893] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8980 [11:13:16.901] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/castArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8981 [11:13:16.904] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8982 [11:13:16.904] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8983 [11:13:16.904] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8984 [11:13:16.911] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/ceil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8985 [11:13:16.917] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8986 [11:13:16.917] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8987 [11:13:16.917] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8988 [11:13:16.939] Elapsed:: 22ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/chain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8989 [11:13:16.945] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8990 [11:13:16.945] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8991 [11:13:16.945] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8992 [11:13:16.959] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/chunk.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8993 [11:13:16.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8994 [11:13:16.963] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8995 [11:13:16.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8996 [11:13:16.970] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/clamp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 8997 [11:13:16.972] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8998 [11:13:16.972] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 8999 [11:13:16.972] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9000 [11:13:16.979] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/clone.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9001 [11:13:16.981] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9002 [11:13:16.981] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9003 [11:13:16.981] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9004 [11:13:16.989] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9005 [11:13:16.992] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9006 [11:13:16.992] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9007 [11:13:16.992] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9008 [11:13:16.999] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneDeepWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9009 [11:13:17.1] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9010 [11:13:17.1] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9011 [11:13:17.1] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9012 [11:13:17.8] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cloneWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9013 [11:13:17.10] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9014 [11:13:17.10] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9015 [11:13:17.10] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9016 [11:13:17.17] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/collection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9017 [11:13:17.20] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9018 [11:13:17.20] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9019 [11:13:17.20] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9020 [11:13:17.37] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/commit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9021 [11:13:17.40] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9022 [11:13:17.40] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9023 [11:13:17.40] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9024 [11:13:17.47] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/compact.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9025 [11:13:17.49] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9026 [11:13:17.49] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9027 [11:13:17.49] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9028 [11:13:17.56] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/concat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9029 [11:13:17.59] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9030 [11:13:17.59] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9031 [11:13:17.59] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9032 [11:13:17.67] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/cond.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9033 [11:13:17.69] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9034 [11:13:17.69] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9035 [11:13:17.69] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9036 [11:13:17.76] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/conforms.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9037 [11:13:17.78] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9038 [11:13:17.78] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9039 [11:13:17.78] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9040 [11:13:17.85] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/conformsTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9041 [11:13:17.88] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9042 [11:13:17.88] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9043 [11:13:17.88] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9044 [11:13:17.102] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/constant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9045 [11:13:17.109] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9046 [11:13:17.109] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9047 [11:13:17.109] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9048 [11:13:17.128] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/core.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9049 [11:13:17.132] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9050 [11:13:17.132] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9051 [11:13:17.132] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9052 [11:13:17.141] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/core.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9053 [11:13:17.145] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9054 [11:13:17.145] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9055 [11:13:17.145] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9056 [11:13:17.156] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/countBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9057 [11:13:17.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9058 [11:13:17.158] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9059 [11:13:17.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9060 [11:13:17.166] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/create.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9061 [11:13:17.169] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9062 [11:13:17.169] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9063 [11:13:17.169] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9064 [11:13:17.176] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/curry.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9065 [11:13:17.179] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9066 [11:13:17.179] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9067 [11:13:17.179] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9068 [11:13:17.188] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/curryRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9069 [11:13:17.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9070 [11:13:17.191] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9071 [11:13:17.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9072 [11:13:17.201] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/date.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9073 [11:13:17.205] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9074 [11:13:17.205] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9075 [11:13:17.205] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9076 [11:13:17.215] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/debounce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9077 [11:13:17.220] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9078 [11:13:17.220] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9079 [11:13:17.220] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9080 [11:13:17.231] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/deburr.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9081 [11:13:17.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9082 [11:13:17.234] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9083 [11:13:17.234] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9084 [11:13:17.242] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaultTo.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9085 [11:13:17.245] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9086 [11:13:17.245] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9087 [11:13:17.245] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9088 [11:13:17.252] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaults.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9089 [11:13:17.254] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9090 [11:13:17.254] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9091 [11:13:17.254] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9092 [11:13:17.261] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defaultsDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9093 [11:13:17.264] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9094 [11:13:17.264] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9095 [11:13:17.264] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9096 [11:13:17.272] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/defer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9097 [11:13:17.274] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9098 [11:13:17.274] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9099 [11:13:17.274] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9100 [11:13:17.281] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/delay.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9101 [11:13:17.283] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9102 [11:13:17.283] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9103 [11:13:17.283] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9104 [11:13:17.290] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/difference.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9105 [11:13:17.293] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9106 [11:13:17.293] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9107 [11:13:17.293] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9108 [11:13:17.301] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/differenceBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9109 [11:13:17.303] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9110 [11:13:17.303] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9111 [11:13:17.303] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9112 [11:13:17.310] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/differenceWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9113 [11:13:17.313] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9114 [11:13:17.313] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9115 [11:13:17.313] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9116 [11:13:17.320] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/divide.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9117 [11:13:17.322] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9118 [11:13:17.322] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9119 [11:13:17.322] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9120 [11:13:17.330] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/drop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9121 [11:13:17.332] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9122 [11:13:17.332] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9123 [11:13:17.333] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9124 [11:13:17.339] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9125 [11:13:17.342] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9126 [11:13:17.342] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9127 [11:13:17.342] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9128 [11:13:17.349] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9129 [11:13:17.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9130 [11:13:17.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9131 [11:13:17.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9132 [11:13:17.360] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/dropWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9133 [11:13:17.362] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9134 [11:13:17.362] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9135 [11:13:17.362] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9136 [11:13:17.369] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/each.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9137 [11:13:17.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9138 [11:13:17.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9139 [11:13:17.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9140 [11:13:17.379] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/eachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9141 [11:13:17.381] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9142 [11:13:17.381] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9143 [11:13:17.381] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9144 [11:13:17.388] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/endsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9145 [11:13:17.391] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9146 [11:13:17.391] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9147 [11:13:17.391] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9148 [11:13:17.399] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/entries.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9149 [11:13:17.401] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9150 [11:13:17.401] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9151 [11:13:17.401] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9152 [11:13:17.408] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/entriesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9153 [11:13:17.410] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9154 [11:13:17.410] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9155 [11:13:17.410] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9156 [11:13:17.418] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/eq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9157 [11:13:17.421] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9158 [11:13:17.421] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9159 [11:13:17.421] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9160 [11:13:17.429] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/escape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9161 [11:13:17.431] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9162 [11:13:17.432] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9163 [11:13:17.432] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9164 [11:13:17.439] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/escapeRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9165 [11:13:17.442] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9166 [11:13:17.442] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9167 [11:13:17.442] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9168 [11:13:17.449] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/every.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9169 [11:13:17.451] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9170 [11:13:17.452] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9171 [11:13:17.452] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9172 [11:13:17.459] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/extend.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9173 [11:13:17.462] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9174 [11:13:17.462] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9175 [11:13:17.462] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9176 [11:13:17.469] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/extendWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9177 [11:13:17.471] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9178 [11:13:17.471] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9179 [11:13:17.471] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9180 [11:13:17.478] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fill.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9181 [11:13:17.481] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9182 [11:13:17.481] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9183 [11:13:17.481] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9184 [11:13:17.489] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/filter.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9185 [11:13:17.491] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9186 [11:13:17.491] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9187 [11:13:17.491] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9188 [11:13:17.498] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/find.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9189 [11:13:17.501] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9190 [11:13:17.501] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9191 [11:13:17.501] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9192 [11:13:17.508] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9193 [11:13:17.510] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9194 [11:13:17.510] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9195 [11:13:17.510] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9196 [11:13:17.518] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9197 [11:13:17.521] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9198 [11:13:17.521] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9199 [11:13:17.521] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9200 [11:13:17.528] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLast.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9201 [11:13:17.531] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9202 [11:13:17.531] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9203 [11:13:17.531] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9204 [11:13:17.538] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9205 [11:13:17.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9206 [11:13:17.540] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9207 [11:13:17.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9208 [11:13:17.547] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/findLastKey.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9209 [11:13:17.550] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9210 [11:13:17.550] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9211 [11:13:17.550] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9212 [11:13:17.558] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/first.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9213 [11:13:17.560] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9214 [11:13:17.560] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9215 [11:13:17.560] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9216 [11:13:17.567] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9217 [11:13:17.570] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9218 [11:13:17.570] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9219 [11:13:17.570] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9220 [11:13:17.576] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMapDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9221 [11:13:17.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9222 [11:13:17.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9223 [11:13:17.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9224 [11:13:17.587] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatMapDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9225 [11:13:17.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9226 [11:13:17.589] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9227 [11:13:17.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9228 [11:13:17.596] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flatten.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9229 [11:13:17.599] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9230 [11:13:17.599] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9231 [11:13:17.599] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9232 [11:13:17.606] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flattenDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9233 [11:13:17.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9234 [11:13:17.608] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9235 [11:13:17.608] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9236 [11:13:17.616] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flattenDepth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9237 [11:13:17.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9238 [11:13:17.619] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9239 [11:13:17.619] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9240 [11:13:17.626] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9241 [11:13:17.628] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9242 [11:13:17.628] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9243 [11:13:17.628] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9244 [11:13:17.635] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/floor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9245 [11:13:17.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9246 [11:13:17.638] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9247 [11:13:17.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9248 [11:13:17.646] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flow.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9249 [11:13:17.648] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9250 [11:13:17.648] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9251 [11:13:17.649] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9252 [11:13:17.656] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/flowRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9253 [11:13:17.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9254 [11:13:17.658] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9255 [11:13:17.658] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9256 [11:13:17.665] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forEach.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9257 [11:13:17.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9258 [11:13:17.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9259 [11:13:17.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9260 [11:13:17.675] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forEachRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9261 [11:13:17.678] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9262 [11:13:17.678] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9263 [11:13:17.678] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9264 [11:13:17.685] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9265 [11:13:17.688] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9266 [11:13:17.688] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9267 [11:13:17.688] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9268 [11:13:17.695] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forInRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9269 [11:13:17.697] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9270 [11:13:17.697] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9271 [11:13:17.697] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9272 [11:13:17.704] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forOwn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9273 [11:13:17.707] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9274 [11:13:17.707] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9275 [11:13:17.707] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9276 [11:13:17.715] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/forOwnRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9277 [11:13:17.717] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9278 [11:13:17.718] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9279 [11:13:17.718] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9280 [11:13:17.724] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9281 [11:13:17.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9282 [11:13:17.727] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9283 [11:13:17.727] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9284 [11:13:17.734] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/fromPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9285 [11:13:17.736] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9286 [11:13:17.736] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9287 [11:13:17.737] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9288 [11:13:17.745] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/function.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9289 [11:13:17.747] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9290 [11:13:17.747] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9291 [11:13:17.747] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9292 [11:13:17.755] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/functions.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9293 [11:13:17.757] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9294 [11:13:17.757] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9295 [11:13:17.757] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9296 [11:13:17.764] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/functionsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9297 [11:13:17.767] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9298 [11:13:17.767] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9299 [11:13:17.767] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9300 [11:13:17.775] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/get.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9301 [11:13:17.778] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9302 [11:13:17.778] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9303 [11:13:17.778] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9304 [11:13:17.785] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/groupBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9305 [11:13:17.787] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9306 [11:13:17.787] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9307 [11:13:17.787] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9308 [11:13:17.794] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/gt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9309 [11:13:17.797] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9310 [11:13:17.797] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9311 [11:13:17.797] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9312 [11:13:17.805] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/gte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9313 [11:13:17.808] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9314 [11:13:17.808] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9315 [11:13:17.808] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9316 [11:13:17.814] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/has.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9317 [11:13:17.817] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9318 [11:13:17.817] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9319 [11:13:17.817] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9320 [11:13:17.824] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/hasIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9321 [11:13:17.826] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9322 [11:13:17.826] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9323 [11:13:17.826] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9324 [11:13:17.833] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/head.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9325 [11:13:17.837] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9326 [11:13:17.837] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9327 [11:13:17.837] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9328 [11:13:17.844] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/identity.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9329 [11:13:17.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9330 [11:13:17.846] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9331 [11:13:17.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9332 [11:13:17.853] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/inRange.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9333 [11:13:17.855] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9334 [11:13:17.856] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9335 [11:13:17.856] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9336 [11:13:17.862] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/includes.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9337 [11:13:17.865] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9338 [11:13:17.865] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9339 [11:13:17.865] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9340 [11:13:17.873] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9341 [11:13:17.875] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9342 [11:13:17.875] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9343 [11:13:17.875] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9344 [11:13:17.882] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/indexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9345 [11:13:17.884] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9346 [11:13:17.884] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9347 [11:13:17.884] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9348 [11:13:17.891] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/initial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9349 [11:13:17.893] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9350 [11:13:17.893] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9351 [11:13:17.893] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9352 [11:13:17.901] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersection.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9353 [11:13:17.903] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9354 [11:13:17.903] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9355 [11:13:17.903] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9356 [11:13:17.910] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersectionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9357 [11:13:17.912] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9358 [11:13:17.912] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9359 [11:13:17.912] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9360 [11:13:17.919] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/intersectionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9361 [11:13:17.921] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9362 [11:13:17.921] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9363 [11:13:17.921] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9364 [11:13:17.929] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invert.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9365 [11:13:17.931] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9366 [11:13:17.931] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9367 [11:13:17.931] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9368 [11:13:17.938] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invertBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9369 [11:13:17.940] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9370 [11:13:17.940] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9371 [11:13:17.940] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9372 [11:13:17.947] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invoke.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9373 [11:13:17.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9374 [11:13:17.949] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9375 [11:13:17.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9376 [11:13:17.957] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/invokeMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9377 [11:13:17.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9378 [11:13:17.959] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9379 [11:13:17.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9380 [11:13:17.965] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArguments.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9381 [11:13:17.968] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9382 [11:13:17.968] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9383 [11:13:17.968] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9384 [11:13:17.974] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9385 [11:13:17.977] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9386 [11:13:17.977] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9387 [11:13:17.977] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9388 [11:13:17.984] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9389 [11:13:17.987] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9390 [11:13:17.987] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9391 [11:13:17.987] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9392 [11:13:17.994] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9393 [11:13:17.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9394 [11:13:17.996] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9395 [11:13:17.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9396 [11:13:18.2] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isArrayLikeObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9397 [11:13:18.5] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9398 [11:13:18.5] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9399 [11:13:18.5] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9400 [11:13:18.11] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isBoolean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9401 [11:13:18.13] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9402 [11:13:18.13] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9403 [11:13:18.13] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9404 [11:13:18.21] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isBuffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9405 [11:13:18.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9406 [11:13:18.23] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9407 [11:13:18.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9408 [11:13:18.30] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isDate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9409 [11:13:18.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9410 [11:13:18.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9411 [11:13:18.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9412 [11:13:18.39] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isElement.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9413 [11:13:18.42] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9414 [11:13:18.42] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9415 [11:13:18.42] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9416 [11:13:18.49] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEmpty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9417 [11:13:18.51] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9418 [11:13:18.51] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9419 [11:13:18.51] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9420 [11:13:18.58] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEqual.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9421 [11:13:18.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9422 [11:13:18.60] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9423 [11:13:18.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9424 [11:13:18.67] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isEqualWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9425 [11:13:18.69] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9426 [11:13:18.69] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9427 [11:13:18.69] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9428 [11:13:18.76] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isError.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9429 [11:13:18.79] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9430 [11:13:18.79] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9431 [11:13:18.79] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9432 [11:13:18.85] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9433 [11:13:18.87] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9434 [11:13:18.87] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9435 [11:13:18.87] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9436 [11:13:18.94] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isFunction.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9437 [11:13:18.96] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9438 [11:13:18.96] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9439 [11:13:18.96] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9440 [11:13:18.103] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9441 [11:13:18.108] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9442 [11:13:18.108] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9443 [11:13:18.108] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9444 [11:13:18.120] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9445 [11:13:18.122] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9446 [11:13:18.122] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9447 [11:13:18.122] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9448 [11:13:18.129] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9449 [11:13:18.131] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9450 [11:13:18.131] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9451 [11:13:18.131] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9452 [11:13:18.138] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMatch.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9453 [11:13:18.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9454 [11:13:18.141] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9455 [11:13:18.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9456 [11:13:18.148] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isMatchWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9457 [11:13:18.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9458 [11:13:18.151] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9459 [11:13:18.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9460 [11:13:18.157] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNaN.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9461 [11:13:18.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9462 [11:13:18.159] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9463 [11:13:18.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9464 [11:13:18.166] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNative.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9465 [11:13:18.168] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9466 [11:13:18.168] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9467 [11:13:18.168] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9468 [11:13:18.185] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNil.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9469 [11:13:18.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9470 [11:13:18.191] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9471 [11:13:18.191] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9472 [11:13:18.213] Elapsed:: 22ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9473 [11:13:18.220] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9474 [11:13:18.221] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9475 [11:13:18.221] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9476 [11:13:18.238] Elapsed:: 17ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9477 [11:13:18.241] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9478 [11:13:18.241] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9479 [11:13:18.241] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9480 [11:13:18.249] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9481 [11:13:18.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9482 [11:13:18.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9483 [11:13:18.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9484 [11:13:18.258] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isObjectLike.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9485 [11:13:18.260] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9486 [11:13:18.260] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9487 [11:13:18.260] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9488 [11:13:18.267] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9489 [11:13:18.270] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9490 [11:13:18.270] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9491 [11:13:18.270] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9492 [11:13:18.277] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isRegExp.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9493 [11:13:18.280] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9494 [11:13:18.280] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9495 [11:13:18.280] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9496 [11:13:18.287] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9497 [11:13:18.289] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9498 [11:13:18.289] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9499 [11:13:18.289] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9500 [11:13:18.296] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9501 [11:13:18.298] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9502 [11:13:18.298] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9503 [11:13:18.298] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9504 [11:13:18.306] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9505 [11:13:18.309] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9506 [11:13:18.309] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9507 [11:13:18.309] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9508 [11:13:18.315] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isSymbol.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9509 [11:13:18.318] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9510 [11:13:18.318] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9511 [11:13:18.318] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9512 [11:13:18.324] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isTypedArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9513 [11:13:18.327] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9514 [11:13:18.327] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9515 [11:13:18.327] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9516 [11:13:18.334] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isUndefined.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9517 [11:13:18.337] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9518 [11:13:18.337] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9519 [11:13:18.337] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9520 [11:13:18.348] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isWeakMap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9521 [11:13:18.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9522 [11:13:18.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9523 [11:13:18.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9524 [11:13:18.360] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/isWeakSet.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9525 [11:13:18.362] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9526 [11:13:18.362] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9527 [11:13:18.362] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9528 [11:13:18.370] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/iteratee.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9529 [11:13:18.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9530 [11:13:18.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9531 [11:13:18.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9532 [11:13:18.380] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/join.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9533 [11:13:18.382] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9534 [11:13:18.382] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9535 [11:13:18.382] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9536 [11:13:18.389] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/kebabCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9537 [11:13:18.391] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9538 [11:13:18.391] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9539 [11:13:18.391] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9540 [11:13:18.398] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keyBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9541 [11:13:18.400] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9542 [11:13:18.400] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9543 [11:13:18.400] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9544 [11:13:18.408] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9545 [11:13:18.410] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9546 [11:13:18.410] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9547 [11:13:18.410] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9548 [11:13:18.417] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/keysIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9549 [11:13:18.419] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9550 [11:13:18.419] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9551 [11:13:18.419] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9552 [11:13:18.426] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lang.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9553 [11:13:18.428] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9554 [11:13:18.428] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9555 [11:13:18.428] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9556 [11:13:18.437] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/last.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9557 [11:13:18.439] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9558 [11:13:18.439] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9559 [11:13:18.439] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9560 [11:13:18.446] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9561 [11:13:18.448] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9562 [11:13:18.448] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9563 [11:13:18.448] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9564 [11:13:18.455] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9565 [11:13:18.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9566 [11:13:18.458] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9567 [11:13:18.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9568 [11:13:18.465] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lodash.min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9569 [11:13:18.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9570 [11:13:18.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9571 [11:13:18.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9572 [11:13:18.475] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lowerCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9573 [11:13:18.477] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9574 [11:13:18.477] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9575 [11:13:18.477] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9576 [11:13:18.484] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lowerFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9577 [11:13:18.486] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9578 [11:13:18.487] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9579 [11:13:18.487] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9580 [11:13:18.493] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9581 [11:13:18.497] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9582 [11:13:18.497] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9583 [11:13:18.497] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9584 [11:13:18.504] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/lte.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9585 [11:13:18.506] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9586 [11:13:18.506] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9587 [11:13:18.506] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9588 [11:13:18.513] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9589 [11:13:18.515] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9590 [11:13:18.515] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9591 [11:13:18.515] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9592 [11:13:18.522] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mapKeys.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9593 [11:13:18.524] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9594 [11:13:18.525] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9595 [11:13:18.525] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9596 [11:13:18.532] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mapValues.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9597 [11:13:18.534] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9598 [11:13:18.534] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9599 [11:13:18.534] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9600 [11:13:18.541] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/matches.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9601 [11:13:18.543] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9602 [11:13:18.543] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9603 [11:13:18.543] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9604 [11:13:18.550] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/matchesProperty.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9605 [11:13:18.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9606 [11:13:18.552] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9607 [11:13:18.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9608 [11:13:18.560] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/math.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9609 [11:13:18.562] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9610 [11:13:18.562] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9611 [11:13:18.562] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9612 [11:13:18.568] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/max.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9613 [11:13:18.571] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9614 [11:13:18.571] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9615 [11:13:18.571] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9616 [11:13:18.577] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/maxBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9617 [11:13:18.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9618 [11:13:18.579] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9619 [11:13:18.579] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9620 [11:13:18.586] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mean.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9621 [11:13:18.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9622 [11:13:18.589] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9623 [11:13:18.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9624 [11:13:18.595] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/meanBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9625 [11:13:18.597] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9626 [11:13:18.597] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9627 [11:13:18.597] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9628 [11:13:18.604] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/memoize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9629 [11:13:18.606] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9630 [11:13:18.606] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9631 [11:13:18.606] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9632 [11:13:18.614] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/merge.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9633 [11:13:18.617] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9634 [11:13:18.617] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9635 [11:13:18.617] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9636 [11:13:18.623] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mergeWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9637 [11:13:18.626] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9638 [11:13:18.626] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9639 [11:13:18.626] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9640 [11:13:18.632] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/method.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9641 [11:13:18.635] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9642 [11:13:18.635] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9643 [11:13:18.635] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9644 [11:13:18.642] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/methodOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9645 [11:13:18.644] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9646 [11:13:18.644] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9647 [11:13:18.644] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9648 [11:13:18.659] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/min.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9649 [11:13:18.662] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9650 [11:13:18.662] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9651 [11:13:18.662] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9652 [11:13:18.670] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/minBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9653 [11:13:18.674] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9654 [11:13:18.674] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9655 [11:13:18.674] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9656 [11:13:18.687] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/mixin.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9657 [11:13:18.691] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9658 [11:13:18.691] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9659 [11:13:18.691] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9660 [11:13:18.701] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/multiply.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9661 [11:13:18.703] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9662 [11:13:18.703] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9663 [11:13:18.703] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9664 [11:13:18.710] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/negate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9665 [11:13:18.712] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9666 [11:13:18.712] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9667 [11:13:18.712] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9668 [11:13:18.720] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/next.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9669 [11:13:18.722] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9670 [11:13:18.722] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9671 [11:13:18.722] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9672 [11:13:18.730] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/noop.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9673 [11:13:18.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9674 [11:13:18.732] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9675 [11:13:18.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9676 [11:13:18.739] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/now.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9677 [11:13:18.741] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9678 [11:13:18.741] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9679 [11:13:18.741] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9680 [11:13:18.748] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/nth.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9681 [11:13:18.750] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9682 [11:13:18.750] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9683 [11:13:18.750] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9684 [11:13:18.758] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/nthArg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9685 [11:13:18.760] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9686 [11:13:18.760] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9687 [11:13:18.760] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9688 [11:13:18.766] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/number.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9689 [11:13:18.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9690 [11:13:18.769] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9691 [11:13:18.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9692 [11:13:18.775] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/object.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9693 [11:13:18.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9694 [11:13:18.777] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9695 [11:13:18.777] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9696 [11:13:18.785] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/omit.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9697 [11:13:18.787] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9698 [11:13:18.787] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9699 [11:13:18.787] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9700 [11:13:18.794] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/omitBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9701 [11:13:18.796] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9702 [11:13:18.796] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9703 [11:13:18.796] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9704 [11:13:18.802] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/once.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9705 [11:13:18.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9706 [11:13:18.805] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9707 [11:13:18.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9708 [11:13:18.811] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/orderBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9709 [11:13:18.813] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9710 [11:13:18.813] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9711 [11:13:18.813] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9712 [11:13:18.831] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/over.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9713 [11:13:18.836] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9714 [11:13:18.836] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9715 [11:13:18.836] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9716 [11:13:18.843] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overArgs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9717 [11:13:18.845] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9718 [11:13:18.845] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9719 [11:13:18.845] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9720 [11:13:18.853] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overEvery.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9721 [11:13:18.855] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9722 [11:13:18.855] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9723 [11:13:18.856] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9724 [11:13:18.863] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/overSome.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9725 [11:13:18.865] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9726 [11:13:18.865] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9727 [11:13:18.865] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9728 [11:13:18.872] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9729 [11:13:18.874] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9730 [11:13:18.874] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9731 [11:13:18.874] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9732 [11:13:18.880] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pad.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9733 [11:13:18.882] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9734 [11:13:18.883] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9735 [11:13:18.883] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9736 [11:13:18.896] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/padEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9737 [11:13:18.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9738 [11:13:18.899] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9739 [11:13:18.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9740 [11:13:18.905] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/padStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9741 [11:13:18.907] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9742 [11:13:18.908] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9743 [11:13:18.908] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9744 [11:13:18.914] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/parseInt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9745 [11:13:18.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9746 [11:13:18.916] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9747 [11:13:18.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9748 [11:13:18.924] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partial.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9749 [11:13:18.927] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9750 [11:13:18.927] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9751 [11:13:18.927] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9752 [11:13:18.933] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partialRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9753 [11:13:18.935] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9754 [11:13:18.935] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9755 [11:13:18.935] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9756 [11:13:18.942] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/partition.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9757 [11:13:18.944] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9758 [11:13:18.944] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9759 [11:13:18.944] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9760 [11:13:18.951] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pick.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9761 [11:13:18.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9762 [11:13:18.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9763 [11:13:18.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9764 [11:13:18.960] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pickBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9765 [11:13:18.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9766 [11:13:18.963] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9767 [11:13:18.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9768 [11:13:18.969] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/plant.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9769 [11:13:18.971] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9770 [11:13:18.971] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9771 [11:13:18.971] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9772 [11:13:18.978] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/property.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9773 [11:13:18.980] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9774 [11:13:18.980] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9775 [11:13:18.980] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9776 [11:13:18.987] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/propertyOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9777 [11:13:18.990] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9778 [11:13:18.990] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9779 [11:13:18.990] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9780 [11:13:18.996] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pull.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9781 [11:13:18.998] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9782 [11:13:18.998] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9783 [11:13:18.998] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9784 [11:13:19.5] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAll.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9785 [11:13:19.7] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9786 [11:13:19.7] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9787 [11:13:19.7] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9788 [11:13:19.14] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAllBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9789 [11:13:19.16] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9790 [11:13:19.16] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9791 [11:13:19.16] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9792 [11:13:19.23] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAllWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9793 [11:13:19.25] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9794 [11:13:19.25] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9795 [11:13:19.25] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9796 [11:13:19.31] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/pullAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9797 [11:13:19.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9798 [11:13:19.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9799 [11:13:19.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9800 [11:13:19.41] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/random.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9801 [11:13:19.43] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9802 [11:13:19.43] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9803 [11:13:19.43] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9804 [11:13:19.50] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/range.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9805 [11:13:19.52] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9806 [11:13:19.52] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9807 [11:13:19.52] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9808 [11:13:19.58] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rangeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9809 [11:13:19.60] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9810 [11:13:19.60] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9811 [11:13:19.61] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9812 [11:13:19.68] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rearg.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9813 [11:13:19.70] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9814 [11:13:19.70] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9815 [11:13:19.70] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9816 [11:13:19.77] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reduce.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9817 [11:13:19.79] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9818 [11:13:19.79] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9819 [11:13:19.79] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9820 [11:13:19.85] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reduceRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9821 [11:13:19.87] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9822 [11:13:19.87] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9823 [11:13:19.88] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9824 [11:13:19.94] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9825 [11:13:19.97] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9826 [11:13:19.97] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9827 [11:13:19.97] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9828 [11:13:19.104] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/remove.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9829 [11:13:19.106] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9830 [11:13:19.106] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9831 [11:13:19.106] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9832 [11:13:19.113] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/repeat.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9833 [11:13:19.115] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9834 [11:13:19.115] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9835 [11:13:19.115] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9836 [11:13:19.121] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/replace.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9837 [11:13:19.124] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9838 [11:13:19.124] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9839 [11:13:19.124] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9840 [11:13:19.131] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/rest.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9841 [11:13:19.133] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9842 [11:13:19.133] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9843 [11:13:19.133] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9844 [11:13:19.140] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/result.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9845 [11:13:19.142] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9846 [11:13:19.142] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9847 [11:13:19.142] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9848 [11:13:19.148] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/reverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9849 [11:13:19.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9850 [11:13:19.151] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9851 [11:13:19.151] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9852 [11:13:19.158] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/round.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9853 [11:13:19.161] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9854 [11:13:19.161] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9855 [11:13:19.161] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9856 [11:13:19.167] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sample.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9857 [11:13:19.169] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9858 [11:13:19.169] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9859 [11:13:19.169] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9860 [11:13:19.187] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sampleSize.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9861 [11:13:19.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9862 [11:13:19.193] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9863 [11:13:19.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9864 [11:13:19.207] Elapsed:: 14ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/seq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9865 [11:13:19.209] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9866 [11:13:19.209] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9867 [11:13:19.209] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9868 [11:13:19.216] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/set.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9869 [11:13:19.218] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9870 [11:13:19.218] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9871 [11:13:19.218] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9872 [11:13:19.224] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/setWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9873 [11:13:19.227] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9874 [11:13:19.227] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9875 [11:13:19.227] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9876 [11:13:19.245] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/shuffle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9877 [11:13:19.252] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9878 [11:13:19.252] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9879 [11:13:19.252] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9880 [11:13:19.263] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/size.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9881 [11:13:19.266] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9882 [11:13:19.266] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9883 [11:13:19.266] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9884 [11:13:19.275] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/slice.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9885 [11:13:19.278] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9886 [11:13:19.278] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9887 [11:13:19.278] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9888 [11:13:19.287] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/snakeCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9889 [11:13:19.293] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9890 [11:13:19.293] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9891 [11:13:19.293] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9892 [11:13:19.313] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/some.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9893 [11:13:19.318] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9894 [11:13:19.318] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9895 [11:13:19.318] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9896 [11:13:19.330] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9897 [11:13:19.334] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9898 [11:13:19.334] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9899 [11:13:19.334] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9900 [11:13:19.346] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9901 [11:13:19.348] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9902 [11:13:19.348] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9903 [11:13:19.348] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9904 [11:13:19.356] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9905 [11:13:19.358] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9906 [11:13:19.358] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9907 [11:13:19.358] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9908 [11:13:19.365] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9909 [11:13:19.367] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9910 [11:13:19.367] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9911 [11:13:19.367] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9912 [11:13:19.374] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndex.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9913 [11:13:19.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9914 [11:13:19.376] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9915 [11:13:19.376] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9916 [11:13:19.384] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndexBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9917 [11:13:19.386] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9918 [11:13:19.386] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9919 [11:13:19.386] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9920 [11:13:19.405] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedLastIndexOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9921 [11:13:19.408] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9922 [11:13:19.408] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9923 [11:13:19.408] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9924 [11:13:19.415] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedUniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9925 [11:13:19.417] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9926 [11:13:19.417] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9927 [11:13:19.417] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9928 [11:13:19.426] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sortedUniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9929 [11:13:19.428] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9930 [11:13:19.428] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9931 [11:13:19.428] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9932 [11:13:19.434] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/split.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9933 [11:13:19.437] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9934 [11:13:19.437] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9935 [11:13:19.437] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9936 [11:13:19.443] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/spread.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9937 [11:13:19.445] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9938 [11:13:19.445] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9939 [11:13:19.445] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9940 [11:13:19.453] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/startCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9941 [11:13:19.455] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9942 [11:13:19.455] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9943 [11:13:19.455] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9944 [11:13:19.461] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/startsWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9945 [11:13:19.463] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9946 [11:13:19.464] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9947 [11:13:19.464] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9948 [11:13:19.470] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9949 [11:13:19.472] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9950 [11:13:19.472] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9951 [11:13:19.472] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9952 [11:13:19.479] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9953 [11:13:19.482] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9954 [11:13:19.482] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9955 [11:13:19.482] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9956 [11:13:19.489] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubFalse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9957 [11:13:19.491] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9958 [11:13:19.491] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9959 [11:13:19.491] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9960 [11:13:19.498] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9961 [11:13:19.500] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9962 [11:13:19.500] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9963 [11:13:19.500] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9964 [11:13:19.506] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9965 [11:13:19.508] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9966 [11:13:19.508] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9967 [11:13:19.508] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9968 [11:13:19.527] Elapsed:: 19ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/stubTrue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9969 [11:13:19.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9970 [11:13:19.529] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9971 [11:13:19.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9972 [11:13:19.538] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/subtract.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9973 [11:13:19.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9974 [11:13:19.540] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9975 [11:13:19.540] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9976 [11:13:19.548] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sum.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9977 [11:13:19.551] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9978 [11:13:19.551] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9979 [11:13:19.551] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9980 [11:13:19.567] Elapsed:: 16ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/sumBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9981 [11:13:19.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9982 [11:13:19.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9983 [11:13:19.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9984 [11:13:19.589] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/tail.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9985 [11:13:19.591] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9986 [11:13:19.591] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9987 [11:13:19.591] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9988 [11:13:19.599] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/take.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9989 [11:13:19.601] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9990 [11:13:19.602] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9991 [11:13:19.602] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9992 [11:13:19.611] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeRight.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9993 [11:13:19.616] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9994 [11:13:19.616] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9995 [11:13:19.616] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9996 [11:13:19.622] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeRightWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 9997 [11:13:19.625] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9998 [11:13:19.625] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 9999 [11:13:19.625] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10000[11:13:19.631] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/takeWhile.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10001[11:13:19.633] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10002[11:13:19.633] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10003[11:13:19.633] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10004[11:13:19.641] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/tap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10005[11:13:19.644] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10006[11:13:19.644] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10007[11:13:19.644] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10008[11:13:19.653] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/template.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10009[11:13:19.656] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10010[11:13:19.656] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10011[11:13:19.656] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10012[11:13:19.665] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/templateSettings.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10013[11:13:19.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10014[11:13:19.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10015[11:13:19.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10016[11:13:19.677] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/throttle.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10017[11:13:19.682] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10018[11:13:19.682] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10019[11:13:19.682] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10020[11:13:19.704] Elapsed:: 22ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/thru.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10021[11:13:19.713] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10022[11:13:19.713] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10023[11:13:19.713] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10024[11:13:19.733] Elapsed:: 20ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/times.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10025[11:13:19.738] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10026[11:13:19.738] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10027[11:13:19.738] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10028[11:13:19.746] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toArray.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10029[11:13:19.749] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10030[11:13:19.749] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10031[11:13:19.749] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10032[11:13:19.758] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toFinite.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10033[11:13:19.761] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10034[11:13:19.761] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10035[11:13:19.761] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10036[11:13:19.768] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10037[11:13:19.771] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10038[11:13:19.771] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10039[11:13:19.771] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10040[11:13:19.778] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toIterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10041[11:13:19.780] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10042[11:13:19.780] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10043[11:13:19.780] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10044[11:13:19.788] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toJSON.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10045[11:13:19.790] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10046[11:13:19.790] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10047[11:13:19.790] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10048[11:13:19.797] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toLength.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10049[11:13:19.799] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10050[11:13:19.799] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10051[11:13:19.800] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10052[11:13:19.806] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toLower.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10053[11:13:19.809] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10054[11:13:19.809] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10055[11:13:19.809] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10056[11:13:19.816] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toNumber.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10057[11:13:19.819] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10058[11:13:19.819] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10059[11:13:19.819] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10060[11:13:19.826] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPairs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10061[11:13:19.828] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10062[11:13:19.828] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10063[11:13:19.828] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10064[11:13:19.835] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPairsIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10065[11:13:19.837] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10066[11:13:19.837] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10067[11:13:19.837] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10068[11:13:19.845] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPath.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10069[11:13:19.849] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10070[11:13:19.849] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10071[11:13:19.849] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10072[11:13:19.858] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toPlainObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10073[11:13:19.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10074[11:13:19.862] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10075[11:13:19.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10076[11:13:19.871] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toSafeInteger.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10077[11:13:19.874] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10078[11:13:19.874] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10079[11:13:19.874] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10080[11:13:19.884] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toString.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10081[11:13:19.887] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10082[11:13:19.887] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10083[11:13:19.887] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10084[11:13:19.896] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/toUpper.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10085[11:13:19.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10086[11:13:19.898] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10087[11:13:19.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10088[11:13:19.906] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/transform.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10089[11:13:19.908] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10090[11:13:19.908] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10091[11:13:19.908] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10092[11:13:19.915] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10093[11:13:19.918] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10094[11:13:19.918] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10095[11:13:19.918] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10096[11:13:19.927] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trimEnd.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10097[11:13:19.930] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10098[11:13:19.930] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10099[11:13:19.930] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10100[11:13:19.937] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/trimStart.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10101[11:13:19.939] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10102[11:13:19.939] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10103[11:13:19.939] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10104[11:13:19.946] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/truncate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10105[11:13:19.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10106[11:13:19.949] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10107[11:13:19.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10108[11:13:19.956] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unary.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10109[11:13:19.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10110[11:13:19.959] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10111[11:13:19.959] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10112[11:13:19.966] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unescape.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10113[11:13:19.968] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10114[11:13:19.968] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10115[11:13:19.968] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10116[11:13:19.975] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/union.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10117[11:13:19.978] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10118[11:13:19.978] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10119[11:13:19.978] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10120[11:13:19.986] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unionBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10121[11:13:19.988] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10122[11:13:19.988] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10123[11:13:19.988] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10124[11:13:19.995] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unionWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10125[11:13:19.997] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10126[11:13:19.997] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10127[11:13:19.997] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10128[11:13:20.6] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniq.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10129[11:13:20.8] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10130[11:13:20.8] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10131[11:13:20.8] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10132[11:13:20.17] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10133[11:13:20.21] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10134[11:13:20.21] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10135[11:13:20.21] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10136[11:13:20.33] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10137[11:13:20.37] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10138[11:13:20.37] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10139[11:13:20.37] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10140[11:13:20.44] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/uniqueId.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10141[11:13:20.47] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10142[11:13:20.47] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10143[11:13:20.47] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10144[11:13:20.55] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unset.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10145[11:13:20.57] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10146[11:13:20.57] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10147[11:13:20.57] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10148[11:13:20.65] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unzip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10149[11:13:20.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10150[11:13:20.68] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10151[11:13:20.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10152[11:13:20.75] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/unzipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10153[11:13:20.77] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10154[11:13:20.77] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10155[11:13:20.77] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10156[11:13:20.85] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/update.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10157[11:13:20.87] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10158[11:13:20.87] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10159[11:13:20.87] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10160[11:13:20.95] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/updateWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10161[11:13:20.98] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10162[11:13:20.98] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10163[11:13:20.98] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10164[11:13:20.105] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/upperCase.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10165[11:13:20.107] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10166[11:13:20.107] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10167[11:13:20.107] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10168[11:13:20.114] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/upperFirst.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10169[11:13:20.116] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10170[11:13:20.116] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10171[11:13:20.116] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10172[11:13:20.124] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/util.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10173[11:13:20.127] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10174[11:13:20.127] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10175[11:13:20.127] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10176[11:13:20.134] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/value.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10177[11:13:20.136] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10178[11:13:20.136] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10179[11:13:20.136] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10180[11:13:20.143] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/valueOf.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10181[11:13:20.146] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10182[11:13:20.146] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10183[11:13:20.146] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10184[11:13:20.154] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/values.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10185[11:13:20.156] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10186[11:13:20.156] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10187[11:13:20.156] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10188[11:13:20.163] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/valuesIn.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10189[11:13:20.166] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10190[11:13:20.166] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10191[11:13:20.166] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10192[11:13:20.174] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/without.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10193[11:13:20.176] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10194[11:13:20.176] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10195[11:13:20.176] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10196[11:13:20.184] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/words.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10197[11:13:20.187] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10198[11:13:20.187] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10199[11:13:20.187] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10200[11:13:20.194] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrap.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10201[11:13:20.196] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10202[11:13:20.196] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10203[11:13:20.196] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10204[11:13:20.203] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperAt.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10205[11:13:20.206] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10206[11:13:20.206] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10207[11:13:20.206] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10208[11:13:20.213] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperChain.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10209[11:13:20.215] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10210[11:13:20.215] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10211[11:13:20.215] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10212[11:13:20.223] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperLodash.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10213[11:13:20.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10214[11:13:20.226] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10215[11:13:20.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10216[11:13:20.233] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperReverse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10217[11:13:20.235] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10218[11:13:20.235] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10219[11:13:20.235] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10220[11:13:20.242] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/wrapperValue.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10221[11:13:20.244] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10222[11:13:20.244] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10223[11:13:20.244] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10224[11:13:20.252] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xor.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10225[11:13:20.255] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10226[11:13:20.255] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10227[11:13:20.255] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10228[11:13:20.262] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zip.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10229[11:13:20.264] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10230[11:13:20.264] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10231[11:13:20.264] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10232[11:13:20.271] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipObject.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10233[11:13:20.274] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10234[11:13:20.274] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10235[11:13:20.274] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10236[11:13:20.281] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xorBy.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10237[11:13:20.284] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10238[11:13:20.284] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10239[11:13:20.284] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10240[11:13:20.291] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/xorWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10241[11:13:20.293] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10242[11:13:20.294] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10243[11:13:20.294] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10244[11:13:20.300] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipObjectDeep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10245[11:13:20.303] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10246[11:13:20.303] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10247[11:13:20.303] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10248[11:13:20.311] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/lodash/zipWith.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10249[11:13:20.313] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10250[11:13:20.313] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10251[11:13:20.313] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10252[11:13:20.313] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10253[11:13:20.314] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10254[11:13:20.314] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10255[11:13:20.314] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10256[11:13:20.314] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10257[11:13:20.314] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10258[11:13:20.314] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10259[11:13:20.314] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10260[11:13:20.321] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/node_modules/@babel/code-frame/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10261[11:13:20.321] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10262[11:13:20.321] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10263[11:13:20.321] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10264[11:13:20.321] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10265[11:13:20.321] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10266[11:13:20.321] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10267[11:13:20.321] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10268[11:13:20.321] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10269[11:13:20.321] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10270[11:13:20.321] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10271[11:13:20.321] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10272[11:13:20.328] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10273[11:13:20.328] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10274[11:13:20.328] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10275[11:13:20.328] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10276[11:13:20.335] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/cacache/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10277[11:13:20.336] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10278[11:13:20.336] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10279[11:13:20.336] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10280[11:13:20.344] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10281[11:13:20.344] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10282[11:13:20.344] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10283[11:13:20.344] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10284[11:13:20.344] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10285[11:13:20.344] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10286[11:13:20.344] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10287[11:13:20.344] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10288[11:13:20.351] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10289[11:13:20.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10290[11:13:20.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10291[11:13:20.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10292[11:13:20.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/caching-transform/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10293[11:13:20.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10294[11:13:20.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10295[11:13:20.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10296[11:13:20.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10297[11:13:20.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10298[11:13:20.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10299[11:13:20.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10300[11:13:20.351] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10301[11:13:20.351] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10302[11:13:20.352] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10303[11:13:20.352] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10304[11:13:20.358] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10305[11:13:20.359] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10306[11:13:20.359] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10307[11:13:20.359] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10308[11:13:20.366] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10309[11:13:20.366] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/js.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10310[11:13:20.366] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/js.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10311[11:13:20.366] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/js.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10312[11:13:20.384] Elapsed:: 18ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/js.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10313[11:13:20.384] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/json.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10314[11:13:20.384] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/json.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10315[11:13:20.384] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/json.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10316[11:13:20.399] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/json.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10317[11:13:20.399] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10318[11:13:20.399] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10319[11:13:20.399] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10320[11:13:20.399] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10321[11:13:20.399] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10322[11:13:20.399] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10323[11:13:20.399] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10324[11:13:20.406] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10325[11:13:20.406] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10326[11:13:20.406] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10327[11:13:20.406] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10328[11:13:20.406] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/default-require-extensions/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10329[11:13:20.406] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10330[11:13:20.406] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10331[11:13:20.406] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10332[11:13:20.406] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10333[11:13:20.406] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10334[11:13:20.406] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10335[11:13:20.406] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10336[11:13:20.406] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10337[11:13:20.407] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10338[11:13:20.407] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10339[11:13:20.407] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10340[11:13:20.419] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10341[11:13:20.419] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10342[11:13:20.420] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10343[11:13:20.420] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10344[11:13:20.427] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10345[11:13:20.427] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10346[11:13:20.427] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10347[11:13:20.427] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10348[11:13:20.435] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/convert-source-map/node_modules/safe-buffer/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10349[11:13:20.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10350[11:13:20.435] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10351[11:13:20.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10352[11:13:20.435] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10353[11:13:20.435] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10354[11:13:20.436] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10355[11:13:20.436] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10356[11:13:20.436] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10357[11:13:20.436] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10358[11:13:20.436] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10359[11:13:20.436] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10360[11:13:20.443] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10361[11:13:20.443] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10362[11:13:20.443] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10363[11:13:20.443] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10364[11:13:20.458] Elapsed:: 15ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/error-ex/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10365[11:13:20.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10366[11:13:20.458] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10367[11:13:20.458] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10368[11:13:20.458] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10369[11:13:20.459] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10370[11:13:20.459] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10371[11:13:20.459] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10372[11:13:20.459] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10373[11:13:20.459] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10374[11:13:20.459] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10375[11:13:20.459] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10376[11:13:20.459] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10377[11:13:20.459] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10378[11:13:20.459] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10379[11:13:20.459] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10380[11:13:20.467] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/es6-error/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10381[11:13:20.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10382[11:13:20.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10383[11:13:20.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10384[11:13:20.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10385[11:13:20.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10386[11:13:20.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10387[11:13:20.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10388[11:13:20.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10389[11:13:20.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10390[11:13:20.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10391[11:13:20.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10392[11:13:20.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10393[11:13:20.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10394[11:13:20.468] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10395[11:13:20.468] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10396[11:13:20.478] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10397[11:13:20.479] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10398[11:13:20.479] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10399[11:13:20.479] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10400[11:13:20.489] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10401[11:13:20.489] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/changelog.sh :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10402[11:13:20.489] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/changelog.sh :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10403[11:13:20.489] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/changelog.sh :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10404[11:13:20.489] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/changelog.sh :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10405[11:13:20.489] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/globals.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10406[11:13:20.489] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/globals.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10407[11:13:20.489] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/globals.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10408[11:13:20.497] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/globals.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10409[11:13:20.497] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10410[11:13:20.498] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10411[11:13:20.498] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10412[11:13:20.505] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10413[11:13:20.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10414[11:13:20.505] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10415[11:13:20.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10416[11:13:20.505] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10417[11:13:20.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10418[11:13:20.505] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10419[11:13:20.505] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10420[11:13:20.512] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10421[11:13:20.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10422[11:13:20.512] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10423[11:13:20.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10424[11:13:20.512] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/globals/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10425[11:13:20.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10426[11:13:20.512] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10427[11:13:20.512] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10428[11:13:20.512] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10429[11:13:20.513] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/README.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10430[11:13:20.513] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/README.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10431[11:13:20.513] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/README.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10432[11:13:20.513] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/README.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10433[11:13:20.513] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10434[11:13:20.513] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10435[11:13:20.513] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10436[11:13:20.521] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10437[11:13:20.521] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/print-script :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10438[11:13:20.521] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/print-script :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10439[11:13:20.521] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/print-script :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10440[11:13:20.521] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/print-script :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10441[11:13:20.521] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/release-notes.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10442[11:13:20.521] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/release-notes.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10443[11:13:20.522] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/release-notes.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10444[11:13:20.522] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/release-notes.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10445[11:13:20.522] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/runtime.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10446[11:13:20.522] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/runtime.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10447[11:13:20.522] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/runtime.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10448[11:13:20.529] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/handlebars/runtime.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10449[11:13:20.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10450[11:13:20.529] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10451[11:13:20.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10452[11:13:20.529] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10453[11:13:20.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10454[11:13:20.529] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10455[11:13:20.529] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10456[11:13:20.536] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10457[11:13:20.536] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10458[11:13:20.536] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10459[11:13:20.536] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10460[11:13:20.536] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10461[11:13:20.536] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10462[11:13:20.536] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10463[11:13:20.536] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10464[11:13:20.536] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10465[11:13:20.536] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10466[11:13:20.536] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10467[11:13:20.536] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10468[11:13:20.543] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hasha/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10469[11:13:20.543] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10470[11:13:20.543] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10471[11:13:20.543] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10472[11:13:20.543] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10473[11:13:20.543] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10474[11:13:20.543] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10475[11:13:20.543] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10476[11:13:20.543] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10477[11:13:20.544] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10478[11:13:20.544] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10479[11:13:20.544] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10480[11:13:20.551] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10481[11:13:20.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10482[11:13:20.552] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10483[11:13:20.552] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10484[11:13:20.559] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10485[11:13:20.559] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10486[11:13:20.559] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10487[11:13:20.559] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10488[11:13:20.566] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10489[11:13:20.566] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.editorconfig :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10490[11:13:20.566] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.editorconfig :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10491[11:13:20.566] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.editorconfig :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10492[11:13:20.566] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.editorconfig :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10493[11:13:20.566] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10494[11:13:20.566] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10495[11:13:20.566] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10496[11:13:20.573] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/hosted-git-info/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10497[11:13:20.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.istanbul.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10498[11:13:20.573] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.istanbul.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10499[11:13:20.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.istanbul.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10500[11:13:20.573] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.istanbul.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10501[11:13:20.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.npmignore :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10502[11:13:20.573] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.npmignore :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10503[11:13:20.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.npmignore :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10504[11:13:20.573] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.npmignore :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10505[11:13:20.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10506[11:13:20.573] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10507[11:13:20.573] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10508[11:13:20.573] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10509[11:13:20.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10510[11:13:20.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10511[11:13:20.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10512[11:13:20.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10513[11:13:20.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10514[11:13:20.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10515[11:13:20.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10516[11:13:20.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10517[11:13:20.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10518[11:13:20.574] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10519[11:13:20.574] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10520[11:13:20.582] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10521[11:13:20.582] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10522[11:13:20.582] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10523[11:13:20.582] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10524[11:13:20.589] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10525[11:13:20.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10526[11:13:20.589] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10527[11:13:20.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10528[11:13:20.589] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10529[11:13:20.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10530[11:13:20.589] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10531[11:13:20.589] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10532[11:13:20.589] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10533[11:13:20.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10534[11:13:20.590] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10535[11:13:20.590] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10536[11:13:20.596] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10537[11:13:20.597] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10538[11:13:20.597] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10539[11:13:20.597] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10540[11:13:20.605] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/foreground-child/node_modules/cross-spawn/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10541[11:13:20.605] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10542[11:13:20.605] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10543[11:13:20.605] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10544[11:13:20.605] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10545[11:13:20.606] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10546[11:13:20.606] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10547[11:13:20.606] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10548[11:13:20.606] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10549[11:13:20.606] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10550[11:13:20.606] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10551[11:13:20.606] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10552[11:13:20.606] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10553[11:13:20.606] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10554[11:13:20.606] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10555[11:13:20.606] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10556[11:13:20.613] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10557[11:13:20.613] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10558[11:13:20.613] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10559[11:13:20.613] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10560[11:13:20.621] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-coverage/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10561[11:13:20.621] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10562[11:13:20.621] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10563[11:13:20.621] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10564[11:13:20.621] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10565[11:13:20.621] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10566[11:13:20.622] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10567[11:13:20.622] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10568[11:13:20.622] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10569[11:13:20.622] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10570[11:13:20.622] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10571[11:13:20.622] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10572[11:13:20.622] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10573[11:13:20.622] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10574[11:13:20.622] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10575[11:13:20.622] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10576[11:13:20.629] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10577[11:13:20.629] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10578[11:13:20.629] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10579[11:13:20.629] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10580[11:13:20.637] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-hook/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10581[11:13:20.637] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10582[11:13:20.637] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10583[11:13:20.637] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10584[11:13:20.637] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10585[11:13:20.637] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10586[11:13:20.637] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10587[11:13:20.637] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10588[11:13:20.637] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10589[11:13:20.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10590[11:13:20.638] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10591[11:13:20.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10592[11:13:20.638] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10593[11:13:20.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10594[11:13:20.638] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10595[11:13:20.638] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10596[11:13:20.645] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10597[11:13:20.645] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10598[11:13:20.645] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10599[11:13:20.645] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10600[11:13:20.645] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10601[11:13:20.645] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10602[11:13:20.645] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10603[11:13:20.645] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10604[11:13:20.645] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10605[11:13:20.645] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10606[11:13:20.645] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10607[11:13:20.645] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10608[11:13:20.645] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10609[11:13:20.645] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10610[11:13:20.645] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10611[11:13:20.645] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10612[11:13:20.653] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10613[11:13:20.653] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10614[11:13:20.653] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10615[11:13:20.653] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10616[11:13:20.660] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10617[11:13:20.660] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10618[11:13:20.660] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10619[11:13:20.660] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10620[11:13:20.660] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10621[11:13:20.660] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10622[11:13:20.660] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10623[11:13:20.660] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10624[11:13:20.660] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10625[11:13:20.661] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10626[11:13:20.661] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10627[11:13:20.661] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10628[11:13:20.668] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10629[11:13:20.669] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10630[11:13:20.669] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10631[11:13:20.669] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10632[11:13:20.676] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10633[11:13:20.676] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10634[11:13:20.676] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10635[11:13:20.676] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10636[11:13:20.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10637[11:13:20.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10638[11:13:20.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10639[11:13:20.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10640[11:13:20.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10641[11:13:20.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10642[11:13:20.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10643[11:13:20.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10644[11:13:20.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10645[11:13:20.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10646[11:13:20.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10647[11:13:20.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10648[11:13:20.684] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10649[11:13:20.684] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10650[11:13:20.684] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10651[11:13:20.684] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10652[11:13:20.692] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10653[11:13:20.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10654[11:13:20.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10655[11:13:20.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10656[11:13:20.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10657[11:13:20.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10658[11:13:20.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10659[11:13:20.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10660[11:13:20.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10661[11:13:20.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10662[11:13:20.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10663[11:13:20.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10664[11:13:20.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10665[11:13:20.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10666[11:13:20.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10667[11:13:20.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10668[11:13:20.700] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10669[11:13:20.701] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10670[11:13:20.701] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10671[11:13:20.701] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10672[11:13:20.708] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-reports/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10673[11:13:20.708] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/LICENSE-MIT.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10674[11:13:20.708] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/LICENSE-MIT.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10675[11:13:20.708] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/LICENSE-MIT.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10676[11:13:20.708] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/LICENSE-MIT.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10677[11:13:20.708] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10678[11:13:20.708] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10679[11:13:20.708] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10680[11:13:20.708] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10681[11:13:20.708] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/jsesc.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10682[11:13:20.708] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/jsesc.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10683[11:13:20.708] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/jsesc.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10684[11:13:20.715] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/jsesc.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10685[11:13:20.715] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10686[11:13:20.715] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10687[11:13:20.715] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10688[11:13:20.723] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/jsesc/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10689[11:13:20.724] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10690[11:13:20.724] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10691[11:13:20.724] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10692[11:13:20.731] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10693[11:13:20.731] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10694[11:13:20.731] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10695[11:13:20.731] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10696[11:13:20.731] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10697[11:13:20.731] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10698[11:13:20.731] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10699[11:13:20.731] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10700[11:13:20.738] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10701[11:13:20.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10702[11:13:20.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10703[11:13:20.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10704[11:13:20.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/load-json-file/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10705[11:13:20.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10706[11:13:20.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10707[11:13:20.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10708[11:13:20.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10709[11:13:20.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10710[11:13:20.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10711[11:13:20.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10712[11:13:20.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10713[11:13:20.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10714[11:13:20.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10715[11:13:20.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10716[11:13:20.746] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10717[11:13:20.746] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10718[11:13:20.746] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10719[11:13:20.746] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10720[11:13:20.754] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lodash.flattendeep/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10721[11:13:20.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10722[11:13:20.755] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10723[11:13:20.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10724[11:13:20.755] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10725[11:13:20.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10726[11:13:20.755] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10727[11:13:20.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10728[11:13:20.755] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10729[11:13:20.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10730[11:13:20.755] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10731[11:13:20.755] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10732[11:13:20.762] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10733[11:13:20.762] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10734[11:13:20.762] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10735[11:13:20.762] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10736[11:13:20.770] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10737[11:13:20.770] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10738[11:13:20.770] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10739[11:13:20.770] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10740[11:13:20.770] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10741[11:13:20.770] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10742[11:13:20.770] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10743[11:13:20.770] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10744[11:13:20.778] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10745[11:13:20.778] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10746[11:13:20.778] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10747[11:13:20.779] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10748[11:13:20.785] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10749[11:13:20.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10750[11:13:20.786] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10751[11:13:20.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10752[11:13:20.786] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/merge-source-map/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10753[11:13:20.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10754[11:13:20.786] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10755[11:13:20.786] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10756[11:13:20.793] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10757[11:13:20.794] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10758[11:13:20.794] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10759[11:13:20.794] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10760[11:13:20.794] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10761[11:13:20.794] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10762[11:13:20.794] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10763[11:13:20.794] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10764[11:13:20.801] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10765[11:13:20.801] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10766[11:13:20.801] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10767[11:13:20.801] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10768[11:13:20.801] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/make-dir/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10769[11:13:20.801] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10770[11:13:20.801] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10771[11:13:20.801] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10772[11:13:20.809] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10773[11:13:20.809] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10774[11:13:20.809] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10775[11:13:20.809] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10776[11:13:20.809] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10777[11:13:20.809] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10778[11:13:20.809] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10779[11:13:20.809] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10780[11:13:20.816] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10781[11:13:20.816] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10782[11:13:20.816] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10783[11:13:20.816] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10784[11:13:20.816] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/ansi-regex/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10785[11:13:20.816] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10786[11:13:20.816] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10787[11:13:20.816] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10788[11:13:20.828] Elapsed:: 12ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10789[11:13:20.828] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10790[11:13:20.828] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10791[11:13:20.828] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10792[11:13:20.828] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10793[11:13:20.828] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10794[11:13:20.828] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10795[11:13:20.828] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10796[11:13:20.836] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10797[11:13:20.837] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10798[11:13:20.837] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10799[11:13:20.837] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10800[11:13:20.846] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10801[11:13:20.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10802[11:13:20.846] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10803[11:13:20.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10804[11:13:20.846] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/strip-ansi/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10805[11:13:20.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10806[11:13:20.846] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10807[11:13:20.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10808[11:13:20.846] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10809[11:13:20.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10810[11:13:20.846] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10811[11:13:20.846] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10812[11:13:20.846] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10813[11:13:20.847] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10814[11:13:20.847] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10815[11:13:20.847] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10816[11:13:20.854] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10817[11:13:20.855] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10818[11:13:20.855] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10819[11:13:20.855] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10820[11:13:20.862] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10821[11:13:20.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.js.map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10822[11:13:20.862] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.js.map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10823[11:13:20.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.js.map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10824[11:13:20.862] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/index.js.map :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10825[11:13:20.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10826[11:13:20.862] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10827[11:13:20.862] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10828[11:13:20.871] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/get-caller-file/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10829[11:13:20.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10830[11:13:20.871] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10831[11:13:20.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10832[11:13:20.871] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10833[11:13:20.871] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10834[11:13:20.872] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10835[11:13:20.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10836[11:13:20.872] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10837[11:13:20.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10838[11:13:20.872] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10839[11:13:20.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10840[11:13:20.872] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10841[11:13:20.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/completion.sh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10842[11:13:20.872] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/completion.sh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10843[11:13:20.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/completion.sh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10844[11:13:20.872] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/completion.sh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10845[11:13:20.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/completion.zsh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10846[11:13:20.872] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/completion.zsh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10847[11:13:20.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/completion.zsh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10848[11:13:20.872] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/completion.zsh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10849[11:13:20.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10850[11:13:20.872] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10851[11:13:20.872] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10852[11:13:20.881] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10853[11:13:20.881] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10854[11:13:20.881] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10855[11:13:20.881] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10856[11:13:20.890] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10857[11:13:20.890] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/yargs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10858[11:13:20.890] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/yargs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10859[11:13:20.890] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/yargs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10860[11:13:20.898] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/yargs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10861[11:13:20.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10862[11:13:20.898] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10863[11:13:20.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10864[11:13:20.898] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10865[11:13:20.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10866[11:13:20.898] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10867[11:13:20.898] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10868[11:13:20.899] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10869[11:13:20.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10870[11:13:20.899] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10871[11:13:20.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10872[11:13:20.899] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10873[11:13:20.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10874[11:13:20.899] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10875[11:13:20.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10876[11:13:20.908] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10877[11:13:20.908] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10878[11:13:20.908] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10879[11:13:20.908] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10880[11:13:20.915] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/require-main-filename/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10881[11:13:20.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10882[11:13:20.916] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10883[11:13:20.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10884[11:13:20.916] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10885[11:13:20.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10886[11:13:20.916] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10887[11:13:20.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10888[11:13:20.916] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10889[11:13:20.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10890[11:13:20.916] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10891[11:13:20.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10892[11:13:20.916] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10893[11:13:20.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10894[11:13:20.916] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10895[11:13:20.916] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10896[11:13:20.924] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10897[11:13:20.924] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10898[11:13:20.924] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10899[11:13:20.924] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10900[11:13:20.931] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10901[11:13:20.932] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10902[11:13:20.932] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10903[11:13:20.932] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10904[11:13:20.942] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10905[11:13:20.942] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10906[11:13:20.942] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10907[11:13:20.942] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10908[11:13:20.942] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10909[11:13:20.942] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10910[11:13:20.942] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10911[11:13:20.942] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10912[11:13:20.953] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10913[11:13:20.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10914[11:13:20.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10915[11:13:20.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10916[11:13:20.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/string-width/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10917[11:13:20.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10918[11:13:20.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10919[11:13:20.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10920[11:13:20.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10921[11:13:20.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10922[11:13:20.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10923[11:13:20.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10924[11:13:20.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10925[11:13:20.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10926[11:13:20.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10927[11:13:20.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10928[11:13:20.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10929[11:13:20.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10930[11:13:20.954] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10931[11:13:20.954] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10932[11:13:20.962] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10933[11:13:20.962] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10934[11:13:20.962] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10935[11:13:20.962] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10936[11:13:20.962] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10937[11:13:20.962] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10938[11:13:20.962] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10939[11:13:20.962] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10940[11:13:20.962] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10941[11:13:20.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10942[11:13:20.963] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10943[11:13:20.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10944[11:13:20.963] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10945[11:13:20.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10946[11:13:20.963] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10947[11:13:20.963] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10948[11:13:20.972] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10949[11:13:20.972] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10950[11:13:20.972] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10951[11:13:20.972] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10952[11:13:20.985] Elapsed:: 13ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10953[11:13:20.985] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10954[11:13:20.985] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10955[11:13:20.985] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10956[11:13:20.985] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10957[11:13:20.985] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10958[11:13:20.985] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10959[11:13:20.985] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10960[11:13:20.985] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10961[11:13:20.986] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10962[11:13:20.986] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10963[11:13:20.986] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10964[11:13:20.986] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10965[11:13:20.986] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10966[11:13:20.986] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10967[11:13:20.986] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10968[11:13:20.996] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10969[11:13:20.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/semver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10970[11:13:20.996] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/semver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10971[11:13:20.996] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/semver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10972[11:13:21.5] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/semver.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10973[11:13:21.5] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/browser.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10974[11:13:21.5] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/browser.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10975[11:13:21.5] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/browser.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10976[11:13:21.14] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/browser.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10977[11:13:21.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10978[11:13:21.15] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10979[11:13:21.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10980[11:13:21.24] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10981[11:13:21.25] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/range.bnf :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10982[11:13:21.25] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/range.bnf :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10983[11:13:21.25] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/range.bnf :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10984[11:13:21.25] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-instrument/node_modules/semver/range.bnf :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10985[11:13:21.25] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10986[11:13:21.25] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10987[11:13:21.25] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10988[11:13:21.25] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10989[11:13:21.25] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10990[11:13:21.25] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10991[11:13:21.25] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10992[11:13:21.33] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10993[11:13:21.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10994[11:13:21.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10995[11:13:21.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10996[11:13:21.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-report/node_modules/supports-color/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 10997[11:13:21.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10998[11:13:21.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 10999[11:13:21.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11000[11:13:21.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11001[11:13:21.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11002[11:13:21.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11003[11:13:21.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11004[11:13:21.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11005[11:13:21.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11006[11:13:21.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11007[11:13:21.33] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11008[11:13:21.33] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11009[11:13:21.34] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11010[11:13:21.34] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11011[11:13:21.34] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11012[11:13:21.41] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/istanbul-lib-source-maps/node_modules/debug/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11013[11:13:21.41] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11014[11:13:21.41] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11015[11:13:21.41] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11016[11:13:21.41] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11017[11:13:21.41] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11018[11:13:21.41] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11019[11:13:21.41] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11020[11:13:21.41] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11021[11:13:21.41] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/iterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11022[11:13:21.41] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/iterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11023[11:13:21.41] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/iterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11024[11:13:21.50] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/iterator.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11025[11:13:21.50] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11026[11:13:21.50] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11027[11:13:21.50] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11028[11:13:21.57] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11029[11:13:21.57] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/yallist.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11030[11:13:21.57] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/yallist.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11031[11:13:21.57] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/yallist.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11032[11:13:21.64] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/node_modules/yallist/yallist.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11033[11:13:21.65] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11034[11:13:21.65] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11035[11:13:21.65] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11036[11:13:21.65] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11037[11:13:21.65] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11038[11:13:21.65] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11039[11:13:21.65] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11040[11:13:21.65] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11041[11:13:21.65] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11042[11:13:21.65] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11043[11:13:21.65] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11044[11:13:21.65] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11045[11:13:21.65] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11046[11:13:21.65] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11047[11:13:21.65] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11048[11:13:21.72] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11049[11:13:21.72] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11050[11:13:21.72] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11051[11:13:21.72] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11052[11:13:21.80] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/mocha/node_modules/yargs/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11053[11:13:21.81] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11054[11:13:21.81] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11055[11:13:21.81] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11056[11:13:21.81] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11057[11:13:21.81] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11058[11:13:21.81] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11059[11:13:21.81] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11060[11:13:21.81] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11061[11:13:21.81] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11062[11:13:21.81] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11063[11:13:21.81] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11064[11:13:21.81] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11065[11:13:21.81] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11066[11:13:21.81] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11067[11:13:21.81] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11068[11:13:21.88] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11069[11:13:21.88] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11070[11:13:21.88] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11071[11:13:21.88] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11072[11:13:21.96] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11073[11:13:21.96] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/test.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11074[11:13:21.96] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/test.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11075[11:13:21.96] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/test.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11076[11:13:21.104] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/path-parse/test.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11077[11:13:21.104] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11078[11:13:21.105] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11079[11:13:21.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11080[11:13:21.105] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11081[11:13:21.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11082[11:13:21.105] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11083[11:13:21.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11084[11:13:21.105] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11085[11:13:21.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/changelog.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11086[11:13:21.105] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/changelog.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11087[11:13:21.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/changelog.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11088[11:13:21.105] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/changelog.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11089[11:13:21.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/common.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11090[11:13:21.105] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/common.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11091[11:13:21.105] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/common.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11092[11:13:21.112] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/common.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11093[11:13:21.112] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11094[11:13:21.112] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11095[11:13:21.112] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11096[11:13:21.112] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11097[11:13:21.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11098[11:13:21.113] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11099[11:13:21.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11100[11:13:21.113] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11101[11:13:21.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11102[11:13:21.113] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11103[11:13:21.113] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11104[11:13:21.122] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11105[11:13:21.122] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/glob.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11106[11:13:21.122] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/glob.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11107[11:13:21.122] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/glob.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11108[11:13:21.130] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/glob.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11109[11:13:21.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11110[11:13:21.130] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11111[11:13:21.130] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11112[11:13:21.141] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11113[11:13:21.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11114[11:13:21.141] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11115[11:13:21.141] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11116[11:13:21.149] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/lru-cache/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11117[11:13:21.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/sync.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11118[11:13:21.150] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/sync.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11119[11:13:21.150] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/sync.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11120[11:13:21.157] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/glob/sync.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11121[11:13:21.157] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.editorconfig :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11122[11:13:21.158] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.editorconfig :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11123[11:13:21.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.editorconfig :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11124[11:13:21.158] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.editorconfig :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11125[11:13:21.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.eslintignore :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11126[11:13:21.158] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.eslintignore :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11127[11:13:21.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.eslintignore :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11128[11:13:21.158] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.eslintignore :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11129[11:13:21.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.eslintrc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11130[11:13:21.158] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.eslintrc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11131[11:13:21.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.eslintrc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11132[11:13:21.158] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.eslintrc :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11133[11:13:21.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11134[11:13:21.158] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11135[11:13:21.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11136[11:13:21.158] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11137[11:13:21.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11138[11:13:21.158] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11139[11:13:21.158] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11140[11:13:21.158] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11141[11:13:21.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/appveyor.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11142[11:13:21.159] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/appveyor.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11143[11:13:21.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/appveyor.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11144[11:13:21.159] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/appveyor.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11145[11:13:21.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11146[11:13:21.159] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11147[11:13:21.159] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11148[11:13:21.166] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11149[11:13:21.167] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11150[11:13:21.167] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11151[11:13:21.167] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11152[11:13:21.167] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11153[11:13:21.167] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11154[11:13:21.167] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11155[11:13:21.167] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11156[11:13:21.177] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/normalize-package-data/node_modules/resolve/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11157[11:13:21.177] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11158[11:13:21.177] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11159[11:13:21.177] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11160[11:13:21.184] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11161[11:13:21.185] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11162[11:13:21.185] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11163[11:13:21.185] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11164[11:13:21.185] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11165[11:13:21.185] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11166[11:13:21.185] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11167[11:13:21.185] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11168[11:13:21.192] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11169[11:13:21.192] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11170[11:13:21.193] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11171[11:13:21.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11172[11:13:21.193] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/nyc/node_modules/make-dir/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11173[11:13:21.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11174[11:13:21.193] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11175[11:13:21.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11176[11:13:21.193] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11177[11:13:21.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11178[11:13:21.193] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11179[11:13:21.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11180[11:13:21.193] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11181[11:13:21.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11182[11:13:21.193] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11183[11:13:21.193] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11184[11:13:21.203] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11185[11:13:21.203] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11186[11:13:21.203] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11187[11:13:21.203] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11188[11:13:21.210] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11189[11:13:21.210] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11190[11:13:21.210] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11191[11:13:21.210] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11192[11:13:21.210] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11193[11:13:21.210] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11194[11:13:21.210] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11195[11:13:21.211] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11196[11:13:21.218] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11197[11:13:21.218] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11198[11:13:21.218] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11199[11:13:21.218] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11200[11:13:21.218] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11201[11:13:21.218] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11202[11:13:21.218] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11203[11:13:21.218] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11204[11:13:21.225] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11205[11:13:21.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11206[11:13:21.226] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11207[11:13:21.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11208[11:13:21.226] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/os-homedir/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11209[11:13:21.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11210[11:13:21.226] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11211[11:13:21.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11212[11:13:21.226] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11213[11:13:21.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11214[11:13:21.226] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11215[11:13:21.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11216[11:13:21.226] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11217[11:13:21.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11218[11:13:21.226] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11219[11:13:21.226] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11220[11:13:21.235] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11221[11:13:21.235] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11222[11:13:21.236] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11223[11:13:21.236] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11224[11:13:21.243] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/package-hash/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11225[11:13:21.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11226[11:13:21.243] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11227[11:13:21.243] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11228[11:13:21.251] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11229[11:13:21.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11230[11:13:21.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11231[11:13:21.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11232[11:13:21.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11233[11:13:21.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11234[11:13:21.251] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11235[11:13:21.251] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11236[11:13:21.259] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11237[11:13:21.259] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11238[11:13:21.259] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11239[11:13:21.259] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11240[11:13:21.259] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/parse-json/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11241[11:13:21.259] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11242[11:13:21.259] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11243[11:13:21.259] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11244[11:13:21.267] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11245[11:13:21.267] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11246[11:13:21.267] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11247[11:13:21.267] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11248[11:13:21.267] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11249[11:13:21.267] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11250[11:13:21.268] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11251[11:13:21.268] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11252[11:13:21.275] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11253[11:13:21.276] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11254[11:13:21.276] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11255[11:13:21.276] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11256[11:13:21.276] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/path-type/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11257[11:13:21.276] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11258[11:13:21.276] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11259[11:13:21.276] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11260[11:13:21.284] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11261[11:13:21.284] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11262[11:13:21.284] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11263[11:13:21.284] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11264[11:13:21.284] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11265[11:13:21.285] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11266[11:13:21.285] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11267[11:13:21.285] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11268[11:13:21.294] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11269[11:13:21.294] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11270[11:13:21.294] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11271[11:13:21.294] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11272[11:13:21.294] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11273[11:13:21.294] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11274[11:13:21.294] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11275[11:13:21.294] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11276[11:13:21.303] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11277[11:13:21.303] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11278[11:13:21.303] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11279[11:13:21.303] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11280[11:13:21.310] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11281[11:13:21.311] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11282[11:13:21.311] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11283[11:13:21.311] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11284[11:13:21.311] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11285[11:13:21.311] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11286[11:13:21.311] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11287[11:13:21.311] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11288[11:13:21.320] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11289[11:13:21.320] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11290[11:13:21.320] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11291[11:13:21.320] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11292[11:13:21.320] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11293[11:13:21.320] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11294[11:13:21.320] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11295[11:13:21.320] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11296[11:13:21.328] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11297[11:13:21.328] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11298[11:13:21.328] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11299[11:13:21.328] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11300[11:13:21.328] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/read-pkg-up/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11301[11:13:21.328] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11302[11:13:21.328] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11303[11:13:21.329] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11304[11:13:21.329] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11305[11:13:21.329] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11306[11:13:21.329] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11307[11:13:21.329] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11308[11:13:21.329] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11309[11:13:21.329] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11310[11:13:21.329] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11311[11:13:21.329] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11312[11:13:21.339] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11313[11:13:21.340] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11314[11:13:21.340] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11315[11:13:21.340] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11316[11:13:21.347] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/release-zalgo/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11317[11:13:21.347] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11318[11:13:21.347] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11319[11:13:21.347] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11320[11:13:21.348] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11321[11:13:21.348] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11322[11:13:21.348] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11323[11:13:21.348] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11324[11:13:21.355] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11325[11:13:21.356] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11326[11:13:21.356] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11327[11:13:21.356] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11328[11:13:21.356] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11329[11:13:21.356] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/.eslintrc.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11330[11:13:21.356] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/.eslintrc.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11331[11:13:21.356] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/.eslintrc.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11332[11:13:21.363] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/.eslintrc.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11333[11:13:21.364] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11334[11:13:21.364] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11335[11:13:21.364] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11336[11:13:21.371] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11337[11:13:21.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11338[11:13:21.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11339[11:13:21.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11340[11:13:21.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11341[11:13:21.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11342[11:13:21.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11343[11:13:21.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11344[11:13:21.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11345[11:13:21.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11346[11:13:21.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11347[11:13:21.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11348[11:13:21.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11349[11:13:21.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11350[11:13:21.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11351[11:13:21.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11352[11:13:21.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11353[11:13:21.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11354[11:13:21.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11355[11:13:21.372] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11356[11:13:21.372] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11357[11:13:21.373] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/README_js.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11358[11:13:21.373] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/README_js.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11359[11:13:21.373] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/README_js.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11360[11:13:21.373] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/README_js.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11361[11:13:21.373] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11362[11:13:21.373] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11363[11:13:21.373] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11364[11:13:21.380] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11365[11:13:21.380] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11366[11:13:21.380] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11367[11:13:21.380] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11368[11:13:21.388] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11369[11:13:21.388] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v1.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11370[11:13:21.388] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v1.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11371[11:13:21.388] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v1.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11372[11:13:21.396] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v1.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11373[11:13:21.397] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v3.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11374[11:13:21.397] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v3.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11375[11:13:21.397] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v3.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11376[11:13:21.404] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v3.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11377[11:13:21.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v4.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11378[11:13:21.405] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v4.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11379[11:13:21.405] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v4.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11380[11:13:21.412] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v4.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11381[11:13:21.412] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v5.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11382[11:13:21.413] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v5.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11383[11:13:21.413] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v5.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11384[11:13:21.421] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/request/node_modules/uuid/v5.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11385[11:13:21.421] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11386[11:13:21.421] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11387[11:13:21.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11388[11:13:21.422] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/.travis.yml :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11389[11:13:21.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11390[11:13:21.422] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11391[11:13:21.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11392[11:13:21.422] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11393[11:13:21.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11394[11:13:21.422] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11395[11:13:21.422] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11396[11:13:21.430] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11397[11:13:21.430] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11398[11:13:21.430] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11399[11:13:21.430] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11400[11:13:21.437] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11401[11:13:21.437] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11402[11:13:21.437] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11403[11:13:21.438] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11404[11:13:21.438] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/minimist/readme.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11405[11:13:21.438] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11406[11:13:21.438] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11407[11:13:21.438] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11408[11:13:21.445] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11409[11:13:21.445] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11410[11:13:21.445] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11411[11:13:21.445] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11412[11:13:21.445] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11413[11:13:21.445] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11414[11:13:21.445] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11415[11:13:21.445] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11416[11:13:21.454] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11417[11:13:21.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11418[11:13:21.454] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11419[11:13:21.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11420[11:13:21.454] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11421[11:13:21.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11422[11:13:21.454] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11423[11:13:21.454] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11424[11:13:21.454] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-cwd/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11425[11:13:21.455] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/README.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11426[11:13:21.455] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/README.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11427[11:13:21.455] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/README.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11428[11:13:21.455] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/README.markdown :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11429[11:13:21.455] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11430[11:13:21.455] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11431[11:13:21.455] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11432[11:13:21.462] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11433[11:13:21.462] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11434[11:13:21.462] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11435[11:13:21.462] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11436[11:13:21.469] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/optimist/node_modules/wordwrap/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11437[11:13:21.469] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11438[11:13:21.469] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11439[11:13:21.469] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11440[11:13:21.469] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11441[11:13:21.469] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11442[11:13:21.469] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11443[11:13:21.469] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11444[11:13:21.470] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11445[11:13:21.470] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11446[11:13:21.470] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11447[11:13:21.470] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11448[11:13:21.470] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11449[11:13:21.470] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11450[11:13:21.470] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11451[11:13:21.470] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11452[11:13:21.477] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11453[11:13:21.477] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11454[11:13:21.477] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11455[11:13:21.477] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11456[11:13:21.485] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11457[11:13:21.485] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11458[11:13:21.485] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11459[11:13:21.485] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11460[11:13:21.485] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11461[11:13:21.485] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11462[11:13:21.485] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11463[11:13:21.485] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11464[11:13:21.492] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11465[11:13:21.492] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11466[11:13:21.492] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11467[11:13:21.492] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11468[11:13:21.499] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11469[11:13:21.499] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11470[11:13:21.499] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11471[11:13:21.499] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11472[11:13:21.499] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-correct/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11473[11:13:21.499] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11474[11:13:21.499] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11475[11:13:21.499] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11476[11:13:21.499] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11477[11:13:21.499] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/index.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11478[11:13:21.499] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/index.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11479[11:13:21.499] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/index.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11480[11:13:21.507] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/index.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11481[11:13:21.507] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11482[11:13:21.507] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11483[11:13:21.507] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11484[11:13:21.514] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11485[11:13:21.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/test.log :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11486[11:13:21.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/test.log :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11487[11:13:21.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/test.log :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11488[11:13:21.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-exceptions/test.log :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11489[11:13:21.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11490[11:13:21.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11491[11:13:21.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11492[11:13:21.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11493[11:13:21.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11494[11:13:21.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11495[11:13:21.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11496[11:13:21.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11497[11:13:21.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11498[11:13:21.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11499[11:13:21.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11500[11:13:21.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11501[11:13:21.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11502[11:13:21.514] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11503[11:13:21.514] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11504[11:13:21.521] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11505[11:13:21.521] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/shim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11506[11:13:21.521] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/shim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11507[11:13:21.521] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/shim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11508[11:13:21.528] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spawn-wrap/shim.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11509[11:13:21.528] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11510[11:13:21.528] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11511[11:13:21.528] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11512[11:13:21.535] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11513[11:13:21.536] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/parse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11514[11:13:21.536] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/parse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11515[11:13:21.536] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/parse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11516[11:13:21.542] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/parse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11517[11:13:21.543] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/scan.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11518[11:13:21.543] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/scan.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11519[11:13:21.543] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/scan.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11520[11:13:21.549] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-expression-parse/scan.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11521[11:13:21.549] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11522[11:13:21.549] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11523[11:13:21.549] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11524[11:13:21.549] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11525[11:13:21.549] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/deprecated.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11526[11:13:21.549] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/deprecated.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11527[11:13:21.549] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/deprecated.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11528[11:13:21.556] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/deprecated.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11529[11:13:21.556] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/index.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11530[11:13:21.556] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/index.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11531[11:13:21.556] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/index.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11532[11:13:21.564] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/index.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11533[11:13:21.564] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11534[11:13:21.564] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11535[11:13:21.564] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11536[11:13:21.571] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/spdx-license-ids/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11537[11:13:21.571] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11538[11:13:21.571] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11539[11:13:21.571] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11540[11:13:21.578] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11541[11:13:21.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11542[11:13:21.578] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11543[11:13:21.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11544[11:13:21.578] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11545[11:13:21.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11546[11:13:21.578] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11547[11:13:21.578] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11548[11:13:21.584] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11549[11:13:21.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11550[11:13:21.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11551[11:13:21.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11552[11:13:21.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/strip-bom/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11553[11:13:21.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11554[11:13:21.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11555[11:13:21.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11556[11:13:21.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11557[11:13:21.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11558[11:13:21.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11559[11:13:21.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11560[11:13:21.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11561[11:13:21.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11562[11:13:21.585] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11563[11:13:21.585] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11564[11:13:21.593] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11565[11:13:21.593] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11566[11:13:21.593] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11567[11:13:21.593] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11568[11:13:21.593] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11569[11:13:21.593] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11570[11:13:21.593] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11571[11:13:21.593] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11572[11:13:21.599] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11573[11:13:21.600] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11574[11:13:21.600] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11575[11:13:21.600] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11576[11:13:21.607] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11577[11:13:21.607] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11578[11:13:21.607] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11579[11:13:21.607] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11580[11:13:21.614] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11581[11:13:21.614] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11582[11:13:21.614] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11583[11:13:21.614] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11584[11:13:21.614] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11585[11:13:21.615] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11586[11:13:21.615] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11587[11:13:21.615] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11588[11:13:21.615] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/to-fast-properties/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11589[11:13:21.615] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11590[11:13:21.615] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11591[11:13:21.615] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11592[11:13:21.615] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11593[11:13:21.615] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11594[11:13:21.615] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11595[11:13:21.615] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11596[11:13:21.615] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11597[11:13:21.615] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11598[11:13:21.615] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11599[11:13:21.615] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11600[11:13:21.623] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11601[11:13:21.623] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11602[11:13:21.623] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11603[11:13:21.623] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11604[11:13:21.623] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11605[11:13:21.623] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11606[11:13:21.623] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11607[11:13:21.623] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11608[11:13:21.623] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11609[11:13:21.623] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11610[11:13:21.623] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11611[11:13:21.623] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11612[11:13:21.630] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11613[11:13:21.630] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11614[11:13:21.630] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11615[11:13:21.630] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11616[11:13:21.637] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11617[11:13:21.637] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11618[11:13:21.637] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11619[11:13:21.637] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11620[11:13:21.645] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11621[11:13:21.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11622[11:13:21.646] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11623[11:13:21.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11624[11:13:21.646] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11625[11:13:21.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11626[11:13:21.646] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11627[11:13:21.646] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11628[11:13:21.653] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11629[11:13:21.653] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11630[11:13:21.653] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11631[11:13:21.653] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11632[11:13:21.653] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11633[11:13:21.653] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11634[11:13:21.653] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11635[11:13:21.653] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11636[11:13:21.653] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11637[11:13:21.654] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11638[11:13:21.654] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11639[11:13:21.654] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11640[11:13:21.654] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/pify/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11641[11:13:21.654] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11642[11:13:21.654] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11643[11:13:21.654] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11644[11:13:21.654] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11645[11:13:21.654] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11646[11:13:21.654] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11647[11:13:21.654] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11648[11:13:21.661] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11649[11:13:21.661] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11650[11:13:21.661] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11651[11:13:21.661] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11652[11:13:21.661] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/license :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11653[11:13:21.661] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11654[11:13:21.661] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11655[11:13:21.661] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11656[11:13:21.668] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11657[11:13:21.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11658[11:13:21.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11659[11:13:21.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11660[11:13:21.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/resolve-from/readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11661[11:13:21.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11662[11:13:21.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11663[11:13:21.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11664[11:13:21.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11665[11:13:21.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11666[11:13:21.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11667[11:13:21.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11668[11:13:21.668] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11669[11:13:21.668] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11670[11:13:21.669] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11671[11:13:21.669] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11672[11:13:21.669] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11673[11:13:21.669] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11674[11:13:21.669] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11675[11:13:21.669] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11676[11:13:21.677] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11677[11:13:21.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11678[11:13:21.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11679[11:13:21.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11680[11:13:21.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11681[11:13:21.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11682[11:13:21.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11683[11:13:21.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11684[11:13:21.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11685[11:13:21.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11686[11:13:21.677] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11687[11:13:21.677] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11688[11:13:21.685] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11689[11:13:21.685] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11690[11:13:21.685] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11691[11:13:21.685] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11692[11:13:21.692] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11693[11:13:21.692] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11694[11:13:21.692] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11695[11:13:21.692] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11696[11:13:21.692] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11697[11:13:21.692] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11698[11:13:21.692] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11699[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11700[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11701[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11702[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11703[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11704[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11705[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11706[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11707[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11708[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11709[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11710[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11711[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11712[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11713[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/yarn-error.log :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11714[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/yarn-error.log :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11715[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/yarn-error.log :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11716[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/simple-swizzle/node_modules/is-arrayish/yarn-error.log :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11717[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11718[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11719[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11720[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11721[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11722[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11723[11:13:21.693] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11724[11:13:21.693] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11725[11:13:21.694] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11726[11:13:21.694] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11727[11:13:21.694] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11728[11:13:21.702] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11729[11:13:21.702] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11730[11:13:21.702] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11731[11:13:21.702] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11732[11:13:21.702] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11733[11:13:21.702] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11734[11:13:21.702] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11735[11:13:21.703] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11736[11:13:21.709] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11737[11:13:21.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11738[11:13:21.709] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11739[11:13:21.709] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11740[11:13:21.716] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11741[11:13:21.716] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11742[11:13:21.716] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11743[11:13:21.716] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11744[11:13:21.716] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/require-main-filename/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11745[11:13:21.716] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11746[11:13:21.716] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11747[11:13:21.716] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11748[11:13:21.716] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11749[11:13:21.716] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11750[11:13:21.717] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11751[11:13:21.717] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11752[11:13:21.717] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11753[11:13:21.717] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/Readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11754[11:13:21.717] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/Readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11755[11:13:21.717] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/Readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11756[11:13:21.717] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/Readme.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11757[11:13:21.717] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11758[11:13:21.717] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11759[11:13:21.717] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11760[11:13:21.724] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11761[11:13:21.724] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11762[11:13:21.724] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11763[11:13:21.724] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11764[11:13:21.731] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uglify-js/node_modules/commander/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11765[11:13:21.731] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11766[11:13:21.732] Elapsed:: 1ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11767[11:13:21.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11768[11:13:21.732] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/AUTHORS :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11769[11:13:21.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11770[11:13:21.732] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11771[11:13:21.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11772[11:13:21.732] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11773[11:13:21.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11774[11:13:21.732] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11775[11:13:21.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11776[11:13:21.732] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/LICENSE.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11777[11:13:21.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11778[11:13:21.732] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11779[11:13:21.732] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11780[11:13:21.739] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11781[11:13:21.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11782[11:13:21.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11783[11:13:21.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11784[11:13:21.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11785[11:13:21.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11786[11:13:21.739] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11787[11:13:21.739] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11788[11:13:21.746] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11789[11:13:21.746] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v1.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11790[11:13:21.746] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v1.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11791[11:13:21.746] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v1.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11792[11:13:21.753] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v1.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11793[11:13:21.753] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v3.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11794[11:13:21.753] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v3.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11795[11:13:21.753] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v3.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11796[11:13:21.761] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v3.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11797[11:13:21.762] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v4.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11798[11:13:21.762] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v4.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11799[11:13:21.762] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v4.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11800[11:13:21.768] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v4.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11801[11:13:21.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v5.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11802[11:13:21.769] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v5.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11803[11:13:21.769] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v5.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11804[11:13:21.776] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/uuid/v5.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11805[11:13:21.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11806[11:13:21.776] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11807[11:13:21.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11808[11:13:21.776] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11809[11:13:21.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11810[11:13:21.776] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11811[11:13:21.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11812[11:13:21.776] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11813[11:13:21.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/changelog.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11814[11:13:21.776] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/changelog.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11815[11:13:21.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/changelog.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11816[11:13:21.776] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/changelog.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11817[11:13:21.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/common.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11818[11:13:21.776] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/common.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11819[11:13:21.776] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/common.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11820[11:13:21.784] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/common.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11821[11:13:21.784] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/glob.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11822[11:13:21.784] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/glob.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11823[11:13:21.784] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/glob.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11824[11:13:21.791] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/glob.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11825[11:13:21.791] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11826[11:13:21.791] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11827[11:13:21.791] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11828[11:13:21.798] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11829[11:13:21.798] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/sync.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11830[11:13:21.798] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/sync.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11831[11:13:21.798] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/sync.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11832[11:13:21.805] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/test-exclude/node_modules/glob/sync.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11833[11:13:21.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11834[11:13:21.805] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11835[11:13:21.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11836[11:13:21.805] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11837[11:13:21.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11838[11:13:21.805] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11839[11:13:21.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11840[11:13:21.805] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11841[11:13:21.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11842[11:13:21.805] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11843[11:13:21.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11844[11:13:21.805] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11845[11:13:21.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11846[11:13:21.805] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11847[11:13:21.805] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11848[11:13:21.813] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11849[11:13:21.813] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11850[11:13:21.813] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11851[11:13:21.813] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11852[11:13:21.820] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/write-file-atomic/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11853[11:13:21.820] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11854[11:13:21.820] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11855[11:13:21.820] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11856[11:13:21.820] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11857[11:13:21.821] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11858[11:13:21.821] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11859[11:13:21.821] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11860[11:13:21.821] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11861[11:13:21.821] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11862[11:13:21.821] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11863[11:13:21.821] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11864[11:13:21.827] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11865[11:13:21.828] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11866[11:13:21.828] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11867[11:13:21.828] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11868[11:13:21.828] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11869[11:13:21.828] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11870[11:13:21.828] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11871[11:13:21.828] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11872[11:13:21.834] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs-parser/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11873[11:13:21.834] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/buffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11874[11:13:21.834] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/buffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11875[11:13:21.834] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/buffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11876[11:13:21.842] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/buffer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11877[11:13:21.843] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11878[11:13:21.843] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11879[11:13:21.843] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11880[11:13:21.850] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11881[11:13:21.850] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/printer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11882[11:13:21.850] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/printer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11883[11:13:21.850] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/printer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11884[11:13:21.858] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/printer.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11885[11:13:21.858] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/typings/babel-parser.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11886[11:13:21.858] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/typings/babel-parser.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11887[11:13:21.858] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/typings/babel-parser.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11888[11:13:21.866] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/typings/babel-parser.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11889[11:13:21.866] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/source-map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11890[11:13:21.866] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/source-map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11891[11:13:21.866] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/source-map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11892[11:13:21.875] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/generator/lib/source-map.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11893[11:13:21.875] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/bin/babel-parser.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11894[11:13:21.875] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/bin/babel-parser.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11895[11:13:21.875] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/bin/babel-parser.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11896[11:13:21.882] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/bin/babel-parser.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11897[11:13:21.883] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11898[11:13:21.883] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11899[11:13:21.883] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11900[11:13:21.891] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/parser/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11901[11:13:21.891] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/cache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11902[11:13:21.891] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/cache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11903[11:13:21.891] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/cache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11904[11:13:21.898] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/cache.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11905[11:13:21.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/context.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11906[11:13:21.899] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/context.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11907[11:13:21.899] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/context.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11908[11:13:21.905] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/context.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11909[11:13:21.906] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/hub.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11910[11:13:21.906] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/hub.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11911[11:13:21.906] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/hub.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11912[11:13:21.914] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/hub.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11913[11:13:21.914] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11914[11:13:21.914] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11915[11:13:21.914] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11916[11:13:21.922] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11917[11:13:21.922] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/visitors.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11918[11:13:21.927] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/visitors.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11919[11:13:21.927] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/visitors.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11920[11:13:21.935] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/traverse/lib/visitors.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11921[11:13:21.935] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/builder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11922[11:13:21.935] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/builder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11923[11:13:21.935] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/builder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11924[11:13:21.942] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/builder.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11925[11:13:21.942] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/formatters.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11926[11:13:21.942] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/formatters.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11927[11:13:21.942] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/formatters.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11928[11:13:21.949] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/formatters.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11929[11:13:21.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11930[11:13:21.949] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11931[11:13:21.949] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11932[11:13:21.955] Elapsed:: 6ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11933[11:13:21.956] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/literal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11934[11:13:21.956] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/literal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11935[11:13:21.956] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/literal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11936[11:13:21.966] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/literal.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11937[11:13:21.966] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/options.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11938[11:13:21.966] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/options.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11939[11:13:21.966] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/options.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11940[11:13:21.975] Elapsed:: 9ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/options.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11941[11:13:21.975] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/parse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11942[11:13:21.975] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/parse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11943[11:13:21.975] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/parse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11944[11:13:21.982] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/parse.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11945[11:13:21.982] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/populate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11946[11:13:21.982] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/populate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11947[11:13:21.982] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/populate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11948[11:13:21.992] Elapsed:: 10ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/populate.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11949[11:13:21.992] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11950[11:13:21.992] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11951[11:13:21.992] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11952[11:13:22.0] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/template/lib/string.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11953[11:13:22.0] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11954[11:13:22.0] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11955[11:13:22.0] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11956[11:13:22.7] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.d.ts :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11957[11:13:22.7] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11958[11:13:22.7] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11959[11:13:22.7] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11960[11:13:22.14] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11961[11:13:22.14] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.js.flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11962[11:13:22.14] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.js.flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11963[11:13:22.14] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.js.flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11964[11:13:22.14] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/lib/index.js.flow :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11965[11:13:22.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/scripts/generateTypeHelpers.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11966[11:13:22.15] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/scripts/generateTypeHelpers.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11967[11:13:22.15] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/scripts/generateTypeHelpers.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11968[11:13:22.22] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/types/scripts/generateTypeHelpers.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11969[11:13:22.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11970[11:13:22.23] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11971[11:13:22.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11972[11:13:22.23] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/AUTHORS.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11973[11:13:22.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11974[11:13:22.23] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11975[11:13:22.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11976[11:13:22.23] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/CODE_OF_CONDUCT.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11977[11:13:22.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11978[11:13:22.23] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11979[11:13:22.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11980[11:13:22.23] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/LICENSE.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11981[11:13:22.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11982[11:13:22.23] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11983[11:13:22.23] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11984[11:13:22.23] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11985[11:13:22.24] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11986[11:13:22.24] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11987[11:13:22.24] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11988[11:13:22.24] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/ThirdPartyNoticeText.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11989[11:13:22.24] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11990[11:13:22.24] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11991[11:13:22.24] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11992[11:13:22.31] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11993[11:13:22.31] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11994[11:13:22.31] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11995[11:13:22.31] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11996[11:13:22.31] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/xterm-benchmark/node_modules/tsutils/node_modules/typescript/CopyrightNotice.txt :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 11997[11:13:22.31] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11998[11:13:22.31] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 11999[11:13:22.31] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12000[11:13:22.31] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/CHANGELOG.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12001[11:13:22.32] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12002[11:13:22.32] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12003[11:13:22.32] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12004[11:13:22.32] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/LICENSE :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12005[11:13:22.32] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12006[11:13:22.32] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12007[11:13:22.32] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12008[11:13:22.32] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/README.md :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12009[11:13:22.32] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/completion.sh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12010[11:13:22.32] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/completion.sh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12011[11:13:22.32] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/completion.sh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12012[11:13:22.32] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/completion.sh.hbs :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12013[11:13:22.32] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12014[11:13:22.32] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12015[11:13:22.32] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12016[11:13:22.39] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12017[11:13:22.39] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12018[11:13:22.39] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12019[11:13:22.39] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12020[11:13:22.46] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/package.json :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12021[11:13:22.46] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/yargs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12022[11:13:22.46] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/yargs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12023[11:13:22.46] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/yargs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12024[11:13:22.54] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/yargs/yargs.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12025[11:13:22.54] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12026[11:13:22.54] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12027[11:13:22.54] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12028[11:13:22.61] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-function-name/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12029[11:13:22.61] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12030[11:13:22.61] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12031[11:13:22.61] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12032[11:13:22.68] Elapsed:: 7ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-get-function-arity/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12033[11:13:22.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12034[11:13:22.68] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12035[11:13:22.68] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12036[11:13:22.76] Elapsed:: 8ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/@babel/helper-split-export-declaration/lib/index.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12037[11:13:22.76] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/examples/beep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12038[11:13:22.76] Elapsed:: 0ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/examples/beep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project:  WatchType: node_modules for closed script infos in them
Info 12039[11:13:22.76] DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/examples/beep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
Info 12040[11:13:22.87] Elapsed:: 11ms DirectoryWatcher:: Triggered with /home/daimms/dev/Tyriar/xterm.js/node_modules/archy/examples/beep.js :: WatchInfo: /home/daimms/dev/Tyriar/xterm.js/node_modules 1 Project: /home/daimms/dev/Tyriar/xterm.js/src/tsconfig.json WatchType: Failed Lookup Locations
