We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1385d9b commit 72d23c7Copy full SHA for 72d23c7
1 file changed
src/services/services.ts
@@ -5369,12 +5369,6 @@ module ts {
5369
function getEmitOutput(fileName: string): EmitOutput {
5370
synchronizeHostData();
5371
5372
- // If the option is set to not emit on errors, and there are any errors, then we don't
5373
- // want to proceed.
5374
- if (program.getCompilerOptions().noEmitOnError && getPreEmitDiagnostics(program).length > 0) {
5375
- return { outputFiles: [], emitSkipped: true };
5376
- }
5377
-
5378
let sourceFile = getValidSourceFile(fileName);
5379
let outputFiles: OutputFile[] = [];
5380
0 commit comments