Skip to content

Commit f1b5fa0

Browse files
committed
fix: add missing import extensions
1 parent ab3dd25 commit f1b5fa0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

packages/react-ghostmaker/src/maybeGhost/asGhost.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { asGhostProps } from "../maybeGhost";
2-
import { isReactGhost } from "../types";
2+
import { isReactGhost } from "../types.ts";
33
import { expect, test } from "vitest";
44

55
interface Props {

packages/react-ghostmaker/src/maybeGhost/asGhost.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { makeGhost } from "../makeGhost";
2-
import { isReactGhost, type ReactGhost } from "../types";
1+
import { makeGhost } from "../makeGhost.ts";
2+
import { isReactGhost, type ReactGhost } from "../types.ts";
33
import type {
44
MaybeReactGhost,
55
PropsWithFixedUpReactGhosts,

packages/react-ghostmaker/src/maybeGhost/types.test-d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expectTypeOf, test } from "vitest";
22
import { type MaybeReactGhost } from "./types.ts";
3-
import type { ReactGhost } from "../types";
3+
import type { ReactGhost } from "../types.ts";
44
import { asGhostProps } from "./asGhost.ts";
55

66
interface ModelA {

packages/react-ghostmaker/src/maybeGhost/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type OrOptional, type ReactGhost } from "../types";
1+
import { type OrOptional, type ReactGhost } from "../types.ts";
22

33
export type MaybeReactGhost<T> =
44
T extends ReactGhost<infer U> ? ReactGhost<U> | U : T | ReactGhost<T>;

0 commit comments

Comments
 (0)