Skip to content

Commit e7ddb88

Browse files
author
Benjamin Pasero
committed
sqlite - fix compilation
1 parent ee2d4a1 commit e7ddb88

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/lib/compilation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function createCompile(src: string, build: boolean, emitError?: boolean): (token
4747
opts.inlineSources = !!build;
4848
opts.noFilesystemLookup = true;
4949

50-
const ts = tsb.create(opts, true, undefined, err => reporter(err.toString()));
50+
const ts = tsb.create(opts, true, undefined, err => new reporter(err.toString()));
5151

5252
return function (token?: util.ICancellationToken) {
5353

0 commit comments

Comments
 (0)