Skip to content

Commit 1c13971

Browse files
committed
fix(imports): add .js extension to imports
1 parent bc62f8e commit 1c13971

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/hydra/fetchJsonLd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Document, JsonLd, RemoteDocument } from "jsonld/jsonld-spec";
1+
import type { Document, JsonLd, RemoteDocument } from "jsonld/jsonld-spec.js";
22
import type { RequestInitExtended } from "./types.js";
33

44
const jsonLdMimeType = "application/ld+json";

src/openapi3/parseOpenApi3Documentation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Api } from "../Api.js";
22
import handleJson, { removeTrailingSlash } from "./handleJson.js";
33
import type { OpenAPIV3 } from "openapi-types";
4-
import type { RequestInitExtended } from "./types";
4+
import type { RequestInitExtended } from "./types.js";
55

66
export interface ParsedOpenApi3Documentation {
77
api: Api;

0 commit comments

Comments
 (0)