compileOnSaveAffectedFileList shouldn't return any files for noEmit projects

This commit is contained in:
Mine Starks
2017-11-30 09:12:09 -08:00
parent 75e5b13775
commit 1fbe684834
2 changed files with 19 additions and 1 deletions

View File

@@ -1245,7 +1245,7 @@ namespace ts.server {
// if specified a project, we only return affected file list in this project
const projectsToSearch = args.projectFileName ? [this.projectService.findProject(args.projectFileName)] : info.containingProjects;
for (const project of projectsToSearch) {
if (project.compileOnSaveEnabled && project.languageServiceEnabled) {
if (project.compileOnSaveEnabled && project.languageServiceEnabled && !project.getCompilationSettings().noEmit) {
result.push({
projectFileName: project.getProjectName(),
fileNames: project.getCompileOnSaveAffectedFileList(info),