Skip to content

Commit 326f9ab

Browse files
committed
chore: bump max num of instantiations for typescript
1 parent 53b2750 commit 326f9ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: scripts/tsc-diagnostics-check.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const fs = require('fs');
44

55
const stdin = fs.readFileSync(0).toString('utf8');
6-
const maxInstantiations = isNaN(process.argv[2]) ? 250000 : parseInt(process.argv[2], 10);
6+
const maxInstantiations = isNaN(process.argv[2]) ? 275000 : parseInt(process.argv[2], 10);
77

88
console.log(stdin);
99

0 commit comments

Comments
 (0)