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 079021a commit ec7c948Copy full SHA for ec7c948
javascript/extractor/src/com/semmle/js/parser/TypeScriptParser.java
@@ -203,7 +203,7 @@ public String verifyNodeInstallation() {
203
getNodeJsRuntimeInvocation("--version"), out, err, getParserWrapper().getParentFile());
204
b.expectFailure(); // We want to do our own logging in case of an error.
205
206
- int timeout = Env.systemEnv().getInt(TYPESCRIPT_TIMEOUT_VAR, 10000);
+ int timeout = Env.systemEnv().getInt(TYPESCRIPT_TIMEOUT_VAR, 0); // Default to no timeout.
207
try {
208
int r = b.execute(timeout);
209
String stdout = new String(out.toByteArray());
0 commit comments