Skip to content

Commit

Permalink
fix(compiler): emit on error
Browse files Browse the repository at this point in the history
  • Loading branch information
nivekcode committed Mar 4, 2020
1 parent a34ad68 commit edb1ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/compiler/typescript-compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as ts from 'typescript';

export const compileSources = (filePaths: string[]): void => {
const compilerOptions = {
noEmitOnError: true,
noEmitOnError: false,
noImplicitAny: true,
declaration: true,
moduleResolution: ts.ModuleResolutionKind.NodeJs,
Expand Down

0 comments on commit edb1ea7

Please sign in to comment.