Skip to content

Commit

Permalink
bump max typescript instantiations again
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Aug 19, 2024
1 parent 7b98844 commit bfb9cde
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]) ? 230000 : parseInt(process.argv[2], 10);
const maxInstantiations = isNaN(process.argv[2]) ? 250000 : parseInt(process.argv[2], 10);

console.log(stdin);

Expand Down

0 comments on commit bfb9cde

Please sign in to comment.