Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-2.9] Updates the graph before checking if file is present in project for error checking #24817

Merged
merged 1 commit into from
Jun 11, 2018

Conversation

sheetalkamat
Copy link
Member

When file is moved using getEditsForFileRename, the watch notification could be delayed
This could result in project updates in background that could be delayed and result in file not present in the project after its synchronised
Fixes #24547
Port of #24816 to release-2.9

…rror checking

When file is moved using getEditsForFileRename, the watch notification could be delayed
This could result in project updates in background that could be delayed and result in file not present in the project after its synchronised
Fixes #24547
@sheetalkamat sheetalkamat changed the title Updates the graph before checking if file is present in project for error checking [release-2.9] Updates the graph before checking if file is present in project for error checking Jun 9, 2018
@mhegazy
Copy link
Contributor

mhegazy commented Jun 11, 2018

@mjbvz can i get you to take a look at this change? can you give it a quick test and verify it does fix the original issue?

@mhegazy mhegazy merged commit e10a628 into release-2.9 Jun 11, 2018
@mhegazy mhegazy deleted the updateGraphBeforeErrorChecking29 branch June 11, 2018 20:15
@mjbvz
Copy link
Contributor

mjbvz commented Jun 12, 2018

Thanks for taking a look @sheetalkamat!

I'm actually still seeing this issue but am not sure if we are doing something wrong on the VS Code side. Here are the logs:
tsserver.log

Relevant section:

Info 220  [19:13:48.451] Open files: 
Info 220  [19:13:48.451] 	FileName: /Users/matb/projects/san/b.js ProjectRootPath: /Users/matb/projects/san
Info 220  [19:13:48.451] 		Projects: /Users/matb/projects/san/jsconfig.json
Info 220  [19:13:48.451] 	FileName: /Users/matb/projects/san/a.js ProjectRootPath: /Users/matb/projects/san
Info 220  [19:13:48.451] 		Projects: /Users/matb/projects/san/jsconfig.json
Perf 220  [19:13:48.451] 23::open: async elapsed time (in milliseconds) 31.8548
Info 221  [19:13:48.451] request:
    {"seq":24,"type":"request","command":"navtree","arguments":{"file":"/Users/matb/projects/san/a.js"}}
Perf 222  [19:13:48.452] 24::navtree: elapsed time (in milliseconds) 0.7493
Info 223  [19:13:48.452] response:
    {"seq":0,"type":"response","command":"navtree","request_seq":24,"success":true,"body":{"text":"\"a\"","kind":"module","kindModifiers":"","spans":[{"start":{"line":1,"offset":1},"end":{"line":1,"offset":24}}],"childItems":[{"text":"abc","kind":"const","kindModifiers":"export","spans":[{"start":{"line":1,"offset":14},"end":{"line":1,"offset":23}}]}]}}
Info 224  [19:13:48.453] request:
    {"seq":25,"type":"request","command":"configure","arguments":{"file":"/Users/matb/projects/san/a.js","formatOptions":{"tabSize":4,"indentSize":4,"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,"placeOpenBraceOnNewLineForFunctions":false,"placeOpenBraceOnNewLineForControlBlocks":false},"preferences":{"allowTextChangesInNewFiles":true}}}
Info 225  [19:13:48.454] Host configuration update for file /Users/matb/projects/san/a.js
Info 226  [19:13:48.454] response:
    {"seq":0,"type":"response","command":"configure","request_seq":25,"success":true}
Perf 227  [19:13:48.454] 25::configure: async elapsed time (in milliseconds) 0.3628
Info 228  [19:13:48.455] request:
    {"seq":26,"type":"request","command":"configure","arguments":{"file":"/Users/matb/projects/san/a.js","formatOptions":{"tabSize":4,"indentSize":4,"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,"placeOpenBraceOnNewLineForFunctions":false,"placeOpenBraceOnNewLineForControlBlocks":false},"preferences":{"allowTextChangesInNewFiles":true}}}
Info 229  [19:13:48.455] Host configuration update for file /Users/matb/projects/san/a.js
Info 230  [19:13:48.455] response:
    {"seq":0,"type":"response","command":"configure","request_seq":26,"success":true}
Perf 231  [19:13:48.455] 26::configure: async elapsed time (in milliseconds) 0.4857
Info 232  [19:13:48.458] request:
    {"seq":27,"type":"request","command":"getEditsForFileRename","arguments":{"file":"/Users/matb/projects/san/a.js","oldFilePath":"/Users/matb/projects/san/a.ts","newFilePath":"/Users/matb/projects/san/a.js"}}
Info 233  [19:13:48.458] Starting updateGraphWorker: Project: /Users/matb/projects/san/jsconfig.json
Info 234  [19:13:48.458] Finishing updateGraphWorker: Project: /Users/matb/projects/san/jsconfig.json Version: 2 structureChanged: false Elapsed: 0ms
Perf 235  [19:13:48.571] 27::getEditsForFileRename: elapsed time (in milliseconds) 113.6637
Info 236  [19:13:48.571] response:
    {"seq":0,"type":"response","command":"getEditsForFileRename","request_seq":27,"success":true,"body":[]}

@sheetalkamat
Copy link
Member Author

@mjbvz The only errors I see in the log are from plugin loadin which were raised even before the file move as well:

Info 24   [19:13:46.788] Failed to load module 'typescript-lit-html-plugin': Error: Could not resolve JS module 'typescript-lit-html-plugin' starting at '/Users/matb/projects/TypeScript/node_modules'. Looked in: /Users/matb/projects/TypeScript/node_modules/typescript-lit-html-plugin/package.json, /Users/matb/projects/TypeScript/node_modules/typescript-lit-html-plugin.js, /Users/matb/projects/TypeScript/node_modules/typescript-lit-html-plugin.jsx, /Users/matb/projects/TypeScript/node_modules/typescript-lit-html-plugin/index.js, /Users/matb/projects/TypeScript/node_modules/typescript-lit-html-plugin/index.jsx, /Users/matb/projects/node_modules/typescript-lit-html-plugin/package.json, /Users/matb/projects/node_modules/typescript-lit-html-plugin.js, /Users/matb/projects/node_modules/typescript-lit-html-plugin.jsx, /Users/matb/projects/node_modules/typescript-lit-html-plugin/index.js, /Users/matb/projects/node_modules/typescript-lit-html-plugin/index.jsx, /Users/matb/node_modules/typescript-lit-html-plugin/package.json, /Users/matb/node_modules/typescript-lit-html-plugin.js, /Users/matb/node_modules/typescript-lit-html-plugin.jsx, /Users/matb/node_modules/typescript-lit-html-plugin/index.js, /Users/matb/node_modules/typescript-lit-html-plugin/index.jsx, /Users/node_modules/typescript-lit-html-plugin/package.json, /Users/node_modules/typescript-lit-html-plugin.js, /Users/node_modules/typescript-lit-html-plugin.jsx, /Users/node_modules/typescript-lit-html-plugin/index.js, /Users/node_modules/typescript-lit-html-plugin/index.jsx, /node_modules/typescript-lit-html-plugin/package.json, /node_modules/typescript-lit-html-plugin.js, /node_modules/typescript-lit-html-plugin.jsx, /node_modules/typescript-lit-html-plugin/index.js, /node_modules/typescript-lit-html-plugin/index.jsx
    at Object.resolveJavaScriptModule (/Users/matb/projects/TypeScript/built/local/tsserver.js:22227:19)
    at Object.sys.require (/Users/matb/projects/TypeScript/built/local/tsserver.js:99030:45)
    at Function.Project.resolveModule (/Users/matb/projects/TypeScript/built/local/tsserver.js:93125:35)
    at /Users/matb/projects/TypeScript/built/local/tsserver.js:93800:36
    at Object.firstDefined (/Users/matb/projects/TypeScript/built/local/tsserver.js:1522:26)
    at ConfiguredProject.Project.enablePlugin (/Users/matb/projects/TypeScript/built/local/tsserver.js:93799:41)
    at _loop_23 (/Users/matb/projects/TypeScript/built/local/tsserver.js:93784:32)
    at ConfiguredProject.Project.enableGlobalPlugins (/Users/matb/projects/TypeScript/built/local/tsserver.js:93789:25)
    at ConfiguredProject.enablePlugins (/Users/matb/projects/TypeScript/built/local/tsserver.js:93979:22)
    at new ConfiguredProject (/Users/matb/projects/TypeScript/built/local/tsserver.js:93932:23)
    at ProjectService.createConfiguredProject (/Users/matb/projects/TypeScript/built/local/tsserver.js:94996:31)
    at ProjectService.openClientFileWithNormalizedPath (/Users/matb/projects/TypeScript/built/local/tsserver.js:95386:44)
    at IOSession.Session.openClientFile (/Users/matb/projects/TypeScript/built/local/tsserver.js:96848:37)
    at Session.handlers.ts.createMapFromTemplate._a.(anonymous function) (/Users/matb/projects/TypeScript/built/local/tsserver.js:96019:31)
    at /Users/matb/projects/TypeScript/built/local/tsserver.js:97519:88
    at IOSession.Session.executeWithRequestId (/Users/matb/projects/TypeScript/built/local/tsserver.js:97510:28)
    at IOSession.Session.executeCommand (/Users/matb/projects/TypeScript/built/local/tsserver.js:97519:33)
    at IOSession.Session.onMessage (/Users/matb/projects/TypeScript/built/local/tsserver.js:97539:35)
    at Interface.<anonymous> (/Users/matb/projects/TypeScript/built/local/tsserver.js:98770:27)
    at emitOne (events.js:116:13)
    at Interface.emit (events.js:211:7)
    at Interface._onLine (readline.js:282:10)
    at Interface._normalWrite (readline.js:424:12)
    at Socket.ondata (readline.js:141:10)
    at emitOne (events.js:116:13)
    at Socket.emit (events.js:211:7)
    at addChunk (_stream_readable.js:263:12)
    at readableAddChunk (_stream_readable.js:250:11)
    at Socket.Readable.push (_stream_readable.js:208:10)
    at Pipe.onread (net.js:594:20)
Info 25   [19:13:46.788] Couldn't find typescript-lit-html-plugin
Info 26   [19:13:46.788] Loading global plugin typescript-styled-plugin
Info 27   [19:13:46.788] Enabling plugin typescript-styled-plugin from candidate paths: /Users/matb/projects/TypeScript/built/local/tsserver.js/../../..
Info 28   [19:13:46.788] Loading typescript-styled-plugin from /Users/matb/projects/TypeScript/built/local/tsserver.js/../../.. (resolved to /Users/matb/projects/TypeScript/node_modules)
Info 29   [19:13:46.811] Failed to load module 'typescript-styled-plugin': Error: Could not resolve JS module 'typescript-styled-plugin' starting at '/Users/matb/projects/TypeScript/node_modules'. Looked in: /Users/matb/projects/TypeScript/node_modules/typescript-styled-plugin/package.json, /Users/matb/projects/TypeScript/node_modules/typescript-styled-plugin.js, /Users/matb/projects/TypeScript/node_modules/typescript-styled-plugin.jsx, /Users/matb/projects/TypeScript/node_modules/typescript-styled-plugin/index.js, /Users/matb/projects/TypeScript/node_modules/typescript-styled-plugin/index.jsx, /Users/matb/projects/node_modules/typescript-styled-plugin/package.json, /Users/matb/projects/node_modules/typescript-styled-plugin.js, /Users/matb/projects/node_modules/typescript-styled-plugin.jsx, /Users/matb/projects/node_modules/typescript-styled-plugin/index.js, /Users/matb/projects/node_modules/typescript-styled-plugin/index.jsx, /Users/matb/node_modules/typescript-styled-plugin/package.json, /Users/matb/node_modules/typescript-styled-plugin.js, /Users/matb/node_modules/typescript-styled-plugin.jsx, /Users/matb/node_modules/typescript-styled-plugin/index.js, /Users/matb/node_modules/typescript-styled-plugin/index.jsx, /Users/node_modules/typescript-styled-plugin/package.json, /Users/node_modules/typescript-styled-plugin.js, /Users/node_modules/typescript-styled-plugin.jsx, /Users/node_modules/typescript-styled-plugin/index.js, /Users/node_modules/typescript-styled-plugin/index.jsx, /node_modules/typescript-styled-plugin/package.json, /node_modules/typescript-styled-plugin.js, /node_modules/typescript-styled-plugin.jsx, /node_modules/typescript-styled-plugin/index.js, /node_modules/typescript-styled-plugin/index.jsx
    at Object.resolveJavaScriptModule (/Users/matb/projects/TypeScript/built/local/tsserver.js:22227:19)
    at Object.sys.require (/Users/matb/projects/TypeScript/built/local/tsserver.js:99030:45)
    at Function.Project.resolveModule (/Users/matb/projects/TypeScript/built/local/tsserver.js:93125:35)
    at /Users/matb/projects/TypeScript/built/local/tsserver.js:93800:36
    at Object.firstDefined (/Users/matb/projects/TypeScript/built/local/tsserver.js:1522:26)
    at ConfiguredProject.Project.enablePlugin (/Users/matb/projects/TypeScript/built/local/tsserver.js:93799:41)
    at _loop_23 (/Users/matb/projects/TypeScript/built/local/tsserver.js:93784:32)
    at ConfiguredProject.Project.enableGlobalPlugins (/Users/matb/projects/TypeScript/built/local/tsserver.js:93789:25)
    at ConfiguredProject.enablePlugins (/Users/matb/projects/TypeScript/built/local/tsserver.js:93979:22)
    at new ConfiguredProject (/Users/matb/projects/TypeScript/built/local/tsserver.js:93932:23)
    at ProjectService.createConfiguredProject (/Users/matb/projects/TypeScript/built/local/tsserver.js:94996:31)
    at ProjectService.openClientFileWithNormalizedPath (/Users/matb/projects/TypeScript/built/local/tsserver.js:95386:44)
    at IOSession.Session.openClientFile (/Users/matb/projects/TypeScript/built/local/tsserver.js:96848:37)
    at Session.handlers.ts.createMapFromTemplate._a.(anonymous function) (/Users/matb/projects/TypeScript/built/local/tsserver.js:96019:31)
    at /Users/matb/projects/TypeScript/built/local/tsserver.js:97519:88
    at IOSession.Session.executeWithRequestId (/Users/matb/projects/TypeScript/built/local/tsserver.js:97510:28)
    at IOSession.Session.executeCommand (/Users/matb/projects/TypeScript/built/local/tsserver.js:97519:33)
    at IOSession.Session.onMessage (/Users/matb/projects/TypeScript/built/local/tsserver.js:97539:35)
    at Interface.<anonymous> (/Users/matb/projects/TypeScript/built/local/tsserver.js:98770:27)
    at emitOne (events.js:116:13)
    at Interface.emit (events.js:211:7)
    at Interface._onLine (readline.js:282:10)
    at Interface._normalWrite (readline.js:424:12)
    at Socket.ondata (readline.js:141:10)
    at emitOne (events.js:116:13)
    at Socket.emit (events.js:211:7)
    at addChunk (_stream_readable.js:263:12)
    at readableAddChunk (_stream_readable.js:250:11)
    at Socket.Readable.push (_stream_readable.js:208:10)
    at Pipe.onread (net.js:594:20)
Info 30   [19:13:46.811] Couldn't find typescript-styled-plugin
nfo 346  [19:13:54.280] Failed to load module 'typescript-lit-html-plugin': Error: Could not resolve JS module 'typescript-lit-html-plugin' starting at '/Users/matb/projects/TypeScript/node_modules'. Looked in: /Users/matb/projects/TypeScript/node_modules/typescript-lit-html-plugin/package.json, /Users/matb/projects/TypeScript/node_modules/typescript-lit-html-plugin.js, /Users/matb/projects/TypeScript/node_modules/typescript-lit-html-plugin.jsx, /Users/matb/projects/TypeScript/node_modules/typescript-lit-html-plugin/index.js, /Users/matb/projects/TypeScript/node_modules/typescript-lit-html-plugin/index.jsx, /Users/matb/projects/node_modules/typescript-lit-html-plugin/package.json, /Users/matb/projects/node_modules/typescript-lit-html-plugin.js, /Users/matb/projects/node_modules/typescript-lit-html-plugin.jsx, /Users/matb/projects/node_modules/typescript-lit-html-plugin/index.js, /Users/matb/projects/node_modules/typescript-lit-html-plugin/index.jsx, /Users/matb/node_modules/typescript-lit-html-plugin/package.json, /Users/matb/node_modules/typescript-lit-html-plugin.js, /Users/matb/node_modules/typescript-lit-html-plugin.jsx, /Users/matb/node_modules/typescript-lit-html-plugin/index.js, /Users/matb/node_modules/typescript-lit-html-plugin/index.jsx, /Users/node_modules/typescript-lit-html-plugin/package.json, /Users/node_modules/typescript-lit-html-plugin.js, /Users/node_modules/typescript-lit-html-plugin.jsx, /Users/node_modules/typescript-lit-html-plugin/index.js, /Users/node_modules/typescript-lit-html-plugin/index.jsx, /node_modules/typescript-lit-html-plugin/package.json, /node_modules/typescript-lit-html-plugin.js, /node_modules/typescript-lit-html-plugin.jsx, /node_modules/typescript-lit-html-plugin/index.js, /node_modules/typescript-lit-html-plugin/index.jsx
    at Object.resolveJavaScriptModule (/Users/matb/projects/TypeScript/built/local/tsserver.js:22227:19)
    at Object.sys.require (/Users/matb/projects/TypeScript/built/local/tsserver.js:99030:45)
    at Function.Project.resolveModule (/Users/matb/projects/TypeScript/built/local/tsserver.js:93125:35)
    at /Users/matb/projects/TypeScript/built/local/tsserver.js:93800:36
    at Object.firstDefined (/Users/matb/projects/TypeScript/built/local/tsserver.js:1522:26)
    at InferredProject.Project.enablePlugin (/Users/matb/projects/TypeScript/built/local/tsserver.js:93799:41)
    at _loop_23 (/Users/matb/projects/TypeScript/built/local/tsserver.js:93784:32)
    at InferredProject.Project.enableGlobalPlugins (/Users/matb/projects/TypeScript/built/local/tsserver.js:93789:25)
    at new InferredProject (/Users/matb/projects/TypeScript/built/local/tsserver.js:93854:23)
    at ProjectService.createInferredProject (/Users/matb/projects/TypeScript/built/local/tsserver.js:95153:31)
    at ProjectService.getOrCreateInferredProjectForProjectRootPathIfEnabled (/Users/matb/projects/TypeScript/built/local/tsserver.js:95114:33)
    at ProjectService.assignOrphanScriptInfoToInferredProject (/Users/matb/projects/TypeScript/built/local/tsserver.js:94575:36)
    at ProjectService.openClientFileWithNormalizedPath (/Users/matb/projects/TypeScript/built/local/tsserver.js:95402:26)
    at IOSession.Session.openClientFile (/Users/matb/projects/TypeScript/built/local/tsserver.js:96848:37)
    at Session.handlers.ts.createMapFromTemplate._a.(anonymous function) (/Users/matb/projects/TypeScript/built/local/tsserver.js:96019:31)
    at /Users/matb/projects/TypeScript/built/local/tsserver.js:97519:88
    at IOSession.Session.executeWithRequestId (/Users/matb/projects/TypeScript/built/local/tsserver.js:97510:28)
    at IOSession.Session.executeCommand (/Users/matb/projects/TypeScript/built/local/tsserver.js:97519:33)
    at IOSession.Session.onMessage (/Users/matb/projects/TypeScript/built/local/tsserver.js:97539:35)
    at Interface.<anonymous> (/Users/matb/projects/TypeScript/built/local/tsserver.js:98770:27)
    at emitOne (events.js:116:13)
    at Interface.emit (events.js:211:7)
    at Interface._onLine (readline.js:282:10)
    at Interface._normalWrite (readline.js:424:12)
    at Socket.ondata (readline.js:141:10)
    at emitOne (events.js:116:13)
    at Socket.emit (events.js:211:7)
    at addChunk (_stream_readable.js:263:12)
    at readableAddChunk (_stream_readable.js:250:11)
    at Socket.Readable.push (_stream_readable.js:208:10)
    at Pipe.onread (net.js:594:20)
Info 347  [19:13:54.280] Couldn't find typescript-lit-html-plugin
Info 348  [19:13:54.280] Loading global plugin typescript-styled-plugin
Info 349  [19:13:54.280] Enabling plugin typescript-styled-plugin from candidate paths: /Users/matb/projects/TypeScript/built/local/tsserver.js/../../..
Info 350  [19:13:54.281] Loading typescript-styled-plugin from /Users/matb/projects/TypeScript/built/local/tsserver.js/../../.. (resolved to /Users/matb/projects/TypeScript/node_modules)
Info 351  [19:13:54.282] Failed to load module 'typescript-styled-plugin': Error: Could not resolve JS module 'typescript-styled-plugin' starting at '/Users/matb/projects/TypeScript/node_modules'. Looked in: /Users/matb/projects/TypeScript/node_modules/typescript-styled-plugin/package.json, /Users/matb/projects/TypeScript/node_modules/typescript-styled-plugin.js, /Users/matb/projects/TypeScript/node_modules/typescript-styled-plugin.jsx, /Users/matb/projects/TypeScript/node_modules/typescript-styled-plugin/index.js, /Users/matb/projects/TypeScript/node_modules/typescript-styled-plugin/index.jsx, /Users/matb/projects/node_modules/typescript-styled-plugin/package.json, /Users/matb/projects/node_modules/typescript-styled-plugin.js, /Users/matb/projects/node_modules/typescript-styled-plugin.jsx, /Users/matb/projects/node_modules/typescript-styled-plugin/index.js, /Users/matb/projects/node_modules/typescript-styled-plugin/index.jsx, /Users/matb/node_modules/typescript-styled-plugin/package.json, /Users/matb/node_modules/typescript-styled-plugin.js, /Users/matb/node_modules/typescript-styled-plugin.jsx, /Users/matb/node_modules/typescript-styled-plugin/index.js, /Users/matb/node_modules/typescript-styled-plugin/index.jsx, /Users/node_modules/typescript-styled-plugin/package.json, /Users/node_modules/typescript-styled-plugin.js, /Users/node_modules/typescript-styled-plugin.jsx, /Users/node_modules/typescript-styled-plugin/index.js, /Users/node_modules/typescript-styled-plugin/index.jsx, /node_modules/typescript-styled-plugin/package.json, /node_modules/typescript-styled-plugin.js, /node_modules/typescript-styled-plugin.jsx, /node_modules/typescript-styled-plugin/index.js, /node_modules/typescript-styled-plugin/index.jsx
    at Object.resolveJavaScriptModule (/Users/matb/projects/TypeScript/built/local/tsserver.js:22227:19)
    at Object.sys.require (/Users/matb/projects/TypeScript/built/local/tsserver.js:99030:45)
    at Function.Project.resolveModule (/Users/matb/projects/TypeScript/built/local/tsserver.js:93125:35)
    at /Users/matb/projects/TypeScript/built/local/tsserver.js:93800:36
    at Object.firstDefined (/Users/matb/projects/TypeScript/built/local/tsserver.js:1522:26)
    at InferredProject.Project.enablePlugin (/Users/matb/projects/TypeScript/built/local/tsserver.js:93799:41)
    at _loop_23 (/Users/matb/projects/TypeScript/built/local/tsserver.js:93784:32)
    at InferredProject.Project.enableGlobalPlugins (/Users/matb/projects/TypeScript/built/local/tsserver.js:93789:25)
    at new InferredProject (/Users/matb/projects/TypeScript/built/local/tsserver.js:93854:23)
    at ProjectService.createInferredProject (/Users/matb/projects/TypeScript/built/local/tsserver.js:95153:31)
    at ProjectService.getOrCreateInferredProjectForProjectRootPathIfEnabled (/Users/matb/projects/TypeScript/built/local/tsserver.js:95114:33)
    at ProjectService.assignOrphanScriptInfoToInferredProject (/Users/matb/projects/TypeScript/built/local/tsserver.js:94575:36)
    at ProjectService.openClientFileWithNormalizedPath (/Users/matb/projects/TypeScript/built/local/tsserver.js:95402:26)
    at IOSession.Session.openClientFile (/Users/matb/projects/TypeScript/built/local/tsserver.js:96848:37)
    at Session.handlers.ts.createMapFromTemplate._a.(anonymous function) (/Users/matb/projects/TypeScript/built/local/tsserver.js:96019:31)
    at /Users/matb/projects/TypeScript/built/local/tsserver.js:97519:88
    at IOSession.Session.executeWithRequestId (/Users/matb/projects/TypeScript/built/local/tsserver.js:97510:28)
    at IOSession.Session.executeCommand (/Users/matb/projects/TypeScript/built/local/tsserver.js:97519:33)
    at IOSession.Session.onMessage (/Users/matb/projects/TypeScript/built/local/tsserver.js:97539:35)
    at Interface.<anonymous> (/Users/matb/projects/TypeScript/built/local/tsserver.js:98770:27)
    at emitOne (events.js:116:13)
    at Interface.emit (events.js:211:7)
    at Interface._onLine (readline.js:282:10)
    at Interface._normalWrite (readline.js:424:12)
    at Socket.ondata (readline.js:141:10)
    at emitOne (events.js:116:13)
    at Socket.emit (events.js:211:7)
    at addChunk (_stream_readable.js:263:12)
    at readableAddChunk (_stream_readable.js:250:11)
    at Socket.Readable.push (_stream_readable.js:208:10)
    at Pipe.onread (net.js:594:20)
Info 352  [19:13:54.282] Couldn't find typescript-styled-plugin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants