mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Addressed CR feedback.
This commit is contained in:
@@ -555,7 +555,6 @@ namespace ts.server {
|
||||
}
|
||||
|
||||
handleProjectFilelistChanges(project: Project) {
|
||||
// TODO: Ignoring potentially returned 'error' and 'succeeded' condition
|
||||
const { projectOptions } = this.configFileToProjectOptions(project.projectFilename);
|
||||
|
||||
const newRootFiles = projectOptions.files.map((f => this.getCanonicalFileName(f)));
|
||||
@@ -585,7 +584,6 @@ namespace ts.server {
|
||||
|
||||
this.log("Detected newly added tsconfig file: " + fileName);
|
||||
|
||||
// TODO: Ignoring potentially returned 'error' and 'succeeded' condition
|
||||
const { projectOptions } = this.configFileToProjectOptions(fileName);
|
||||
|
||||
const rootFilesInTsconfig = projectOptions.files.map(f => this.getCanonicalFileName(f));
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/// <reference path="..\..\..\src\harness\harness.ts" />
|
||||
|
||||
var expect: typeof _chai.expect = _chai.expect;
|
||||
const expect: typeof _chai.expect = _chai.expect;
|
||||
|
||||
namespace ts.server {
|
||||
let lastWrittenToHost: string;
|
||||
|
||||
Reference in New Issue
Block a user