refactor: 🚚 Explicitely add extensions to all imports

This commit is contained in:
Jesse Wierzbinski 2024-10-04 15:22:48 +02:00
parent b5b7014c00
commit b53307c824
No known key found for this signature in database
99 changed files with 168 additions and 169 deletions

View file

@ -1,5 +1,5 @@
import { afterAll, describe, expect, test } from "bun:test";
import { fakeRequest, getTestUsers } from "./utils";
import { fakeRequest, getTestUsers } from "./utils.ts";
const { tokens, deleteUsers } = await getTestUsers(1);

View file

@ -6,7 +6,7 @@ import type {
Account as ApiAccount,
Relationship as ApiRelationship,
} from "@versia/client/types";
import { config } from "~/packages/config-manager/index";
import { config } from "~/packages/config-manager/index.ts";
import { fakeRequest, getTestUsers } from "~/tests/utils";
const { users, tokens, deleteUsers } = await getTestUsers(2);

View file

@ -6,7 +6,7 @@ import type {
Application as ApiApplication,
Token as ApiToken,
} from "@versia/client/types";
import { fakeRequest, getTestUsers } from "./utils";
import { fakeRequest, getTestUsers } from "./utils.ts";
let clientId: string;
let clientSecret: string;

View file

@ -1,5 +1,5 @@
import { setupDatabase } from "~/drizzle/db";
import { deleteOldTestUsers } from "./utils";
import { deleteOldTestUsers } from "./utils.ts";
await setupDatabase();
await deleteOldTestUsers();