Skip to content

Commit

Permalink
Add undefined checks for malformed type tags
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanCavanaugh committed Feb 11, 2016
1 parent 20f7b18 commit 22060a3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/harness/harness.ts
Original file line number Diff line number Diff line change
Expand Up @@ -939,6 +939,9 @@ namespace Harness {
}
}
}
else if (name === 'suppressOutputPathCheck') {
options.suppressOutputPathCheck = true;
}
else {
throw new Error(`Unknown compiler option '${name}'.`);
}
Expand Down

0 comments on commit 22060a3

Please sign in to comment.