We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6be5890 commit 57918a3Copy full SHA for 57918a3
src/test.ts
@@ -26,7 +26,7 @@ function compareToBaselines() {
26
27
function compileGeneratedFile(file: string) {
28
try {
29
- child_process.execSync(`node ${tscPath} --strict --lib es5 --noEmit ${path.join(outputFolder, file)}`);
+ child_process.execSync(`node ${tscPath} --strict --lib es5 --skipLibCheck --noEmit ${path.join(outputFolder, file)}`);
30
} catch (e) {
31
console.error(`Test failed: could not compile '${file}':`);
32
console.error(e.stdout.toString());
@@ -46,4 +46,4 @@ function test() {
46
process.exit(1);
47
}
48
49
-test();
+test();
0 commit comments