Skip to content

Commit daa3ecb

Browse files
committed
fix: add missing file extension in relative file path import
1 parent 36eca80 commit daa3ecb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ export const graphql = withDefaults(request, {
1313
url: "/graphql",
1414
});
1515

16-
export type { GraphQlQueryResponseData } from "./types";
17-
export { GraphqlResponseError } from "./error";
16+
export type { GraphQlQueryResponseData } from "./types.js";
17+
export { GraphqlResponseError } from "./error.js";
1818

1919
export function withCustomRequest(customRequest: typeof request) {
2020
return withDefaults(customRequest, {

0 commit comments

Comments
 (0)