Skip to content

Commit

Permalink
Merge pull request #153 from mutagene/esinterop-update-for-tsc-compil…
Browse files Browse the repository at this point in the history
…ation-error

Fix TS compilation error on tsc 4.5.4
  • Loading branch information
li-feng-sc authored Nov 22, 2023
2 parents 53760af + ce0c741 commit 6aa86dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test-suite/djinni/vendor/third-party/proto/ts/test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable */
import { util, configure, Writer, Reader } from "protobufjs/minimal";
import * as Long from "long";
import Long from "long";

export const protobufPackage = "djinni.test";

Expand Down
2 changes: 1 addition & 1 deletion test-suite/djinni/vendor/third-party/proto/ts/test2.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable */
import { util, configure, Writer, Reader } from "protobufjs/minimal";
import * as Long from "long";
import Long from "long";

export const protobufPackage = "djinni.test2";

Expand Down
1 change: 1 addition & 0 deletions test-suite/handwritten-src/ts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"paths": {
"@djinni_support/*": ["../../../support-lib/ts/*"]
},
"esModuleInterop": true,
"strict": true,
},
"include": ["./*.ts"],
Expand Down

0 comments on commit 6aa86dc

Please sign in to comment.