Skip to content

Commit

Permalink
chore: bump max instantiations re: #14999
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Nov 4, 2024
1 parent 3c39d0d commit 2706aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tsc-diagnostics-check.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const fs = require('fs');

const stdin = fs.readFileSync(0).toString('utf8');
const maxInstantiations = isNaN(process.argv[2]) ? 125000 : parseInt(process.argv[2], 10);
const maxInstantiations = isNaN(process.argv[2]) ? 135000 : parseInt(process.argv[2], 10);

console.log(stdin);

Expand Down

0 comments on commit 2706aeb

Please sign in to comment.