From 988c03e74676c55de6a87b2488a0d7578808c778 Mon Sep 17 00:00:00 2001 From: Kravets <57632712+kravetsone@users.noreply.github.com> Date: Mon, 1 Jul 2024 20:51:24 +0300 Subject: [PATCH] chore: fix relative paths --- src/contexts/message.ts | 2 +- tsconfig.json | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/contexts/message.ts b/src/contexts/message.ts index 690a2c9..4ffb7c5 100644 --- a/src/contexts/message.ts +++ b/src/contexts/message.ts @@ -40,7 +40,7 @@ import { } from "../utils"; import { EVENTS, SERVICE_MESSAGE_EVENTS } from "../utils"; -import { PaidMediaInfo } from "#structures/paid-media-info"; +import { PaidMediaInfo } from "../structures/paid-media-info"; import type { BotLike } from "../types"; import { Context } from "./context"; import { diff --git a/tsconfig.json b/tsconfig.json index 860513d..396792d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,10 +15,7 @@ "forceConsistentCasingInFileNames": true, "baseUrl": "./src", "rootDir": "./src", - "outDir": "./dist", - "paths": { - "#*": ["./*"] - } + "outDir": "./dist" }, "include": ["src/**/*.ts"] }