File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -555,7 +555,6 @@ namespace ts.server {
555
555
}
556
556
557
557
handleProjectFilelistChanges ( project : Project ) {
558
- // TODO: Ignoring potentially returned 'error' and 'succeeded' condition
559
558
const { projectOptions } = this . configFileToProjectOptions ( project . projectFilename ) ;
560
559
561
560
const newRootFiles = projectOptions . files . map ( ( f => this . getCanonicalFileName ( f ) ) ) ;
@@ -585,7 +584,6 @@ namespace ts.server {
585
584
586
585
this . log ( "Detected newly added tsconfig file: " + fileName ) ;
587
586
588
- // TODO: Ignoring potentially returned 'error' and 'succeeded' condition
589
587
const { projectOptions } = this . configFileToProjectOptions ( fileName ) ;
590
588
591
589
const rootFilesInTsconfig = projectOptions . files . map ( f => this . getCanonicalFileName ( f ) ) ;
Original file line number Diff line number Diff line change 1
1
/// <reference path="..\..\..\src\harness\harness.ts" />
2
2
3
- var expect : typeof _chai . expect = _chai . expect ;
3
+ const expect : typeof _chai . expect = _chai . expect ;
4
4
5
5
namespace ts . server {
6
6
let lastWrittenToHost : string ;
You can’t perform that action at this time.
0 commit comments