We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a99b5cb commit 6658e21Copy full SHA for 6658e21
src/harness/harness.ts
@@ -904,7 +904,8 @@ namespace Harness {
904
{ name: "includeBuiltFile", type: "string" },
905
{ name: "fileName", type: "string" },
906
{ name: "libFiles", type: "string" },
907
- { name: "noErrorTruncation", type: "boolean" }
+ { name: "noErrorTruncation", type: "boolean" },
908
+ { name: "suppressOutputPathCheck", type: "boolean" }
909
];
910
911
let optionsIndex: ts.Map<ts.CommandLineOption>;
@@ -947,9 +948,6 @@ namespace Harness {
947
948
}
949
950
- else if (name === "suppressOutputPathCheck") {
951
- options.suppressOutputPathCheck = true;
952
- }
953
else {
954
throw new Error(`Unknown compiler option '${name}'.`);
955
0 commit comments