Skip to content

Commit

Permalink
Update build to succeed
Browse files Browse the repository at this point in the history
  • Loading branch information
darunrs committed Jul 25, 2024
1 parent 8b28281 commit 1cf0c92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion runner/src/stream-handler/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import parentLogger from '../logger';
import { wrapSpan } from '../utility';
import { type PostgresConnectionParams } from '../pg-client';
import DmlHandler from '../dml-handler/dml-handler';
import ContextBuilder from '../context/context';
import ContextBuilder from '../context';

if (isMainThread) {
throw new Error('Worker should not be run on main thread');
Expand Down
4 changes: 2 additions & 2 deletions runner/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
"noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
"alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
"noUnusedLocals": false, /* Enable error reporting when local variables aren't read. */
"noUnusedParameters": false, /* Raise an error when a function parameter isn't read. */
"noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
"noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["./src", "./tests", "./scripts"],
Expand Down

0 comments on commit 1cf0c92

Please sign in to comment.