File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -555,7 +555,6 @@ namespace ts.server {
555555 }
556556
557557 handleProjectFilelistChanges ( project : Project ) {
558- // TODO: Ignoring potentially returned 'error' and 'succeeded' condition
559558 const { projectOptions } = this . configFileToProjectOptions ( project . projectFilename ) ;
560559
561560 const newRootFiles = projectOptions . files . map ( ( f => this . getCanonicalFileName ( f ) ) ) ;
@@ -585,7 +584,6 @@ namespace ts.server {
585584
586585 this . log ( "Detected newly added tsconfig file: " + fileName ) ;
587586
588- // TODO: Ignoring potentially returned 'error' and 'succeeded' condition
589587 const { projectOptions } = this . configFileToProjectOptions ( fileName ) ;
590588
591589 const rootFilesInTsconfig = projectOptions . files . map ( f => this . getCanonicalFileName ( f ) ) ;
Original file line number Diff line number Diff line change 11/// <reference path="..\..\..\src\harness\harness.ts" />
22
3- var expect : typeof _chai . expect = _chai . expect ;
3+ const expect : typeof _chai . expect = _chai . expect ;
44
55namespace ts . server {
66 let lastWrittenToHost : string ;
You can’t perform that action at this time.
0 commit comments