diff --git a/near/test/sdk.ts b/near/test/sdk.ts index b93b1f24b..7f42814c8 100644 --- a/near/test/sdk.ts +++ b/near/test/sdk.ts @@ -51,7 +51,7 @@ import { transferFromAlgorand, transferNearFromNear, transferTokenFromNear, -} from "@certusone/wormhole-sdk"; +} from "@certusone/wormhole-sdk/src"; import { parseSequenceFromLogAlgorand } from "@certusone/wormhole-sdk/lib/cjs/bridge"; diff --git a/near/tsconfig.json b/near/tsconfig.json new file mode 100644 index 000000000..f6f1c9f50 --- /dev/null +++ b/near/tsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "strict": true, + "esModuleInterop": true, + "downlevelIteration": true, + "allowJs": true, + } +}