Skip to content

Commit

Permalink
fix: Rollup failed to resolve import 'types' (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
dschoeni authored Sep 3, 2022
1 parent 44929c2 commit 2807989
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cli/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AstroI18nextConfig } from "types";
import { AstroI18nextConfig } from "../types";

export interface GlobalArgs {
verbose: boolean;
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AstroIntegration } from "astro";
import { AstroI18nextConfig, AstroI18nextOptions } from "types";
import { AstroI18nextConfig, AstroI18nextOptions } from "./types";
import {
moveBaseLanguageToFirstIndex,
deeplyStringifyObject,
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import i18next, { t } from "i18next";
import { fileURLToPath } from "url";
import load from "@proload/core";
import { AstroI18nextConfig } from "types";
import { AstroI18nextConfig } from "./types";
import typescript from "@proload/plugin-typescript";

/**
Expand Down

0 comments on commit 2807989

Please sign in to comment.