diff --git a/src/services/publish.ts b/src/services/publish.ts index aba0b74..e80348f 100644 --- a/src/services/publish.ts +++ b/src/services/publish.ts @@ -1,5 +1,5 @@ import { initTRPC } from "@trpc/server"; -import EventEmitter, { on } from "node:events"; +import { EventEmitter, on } from "node:events"; import { getConfig } from "./config"; import { errorMessage } from "@/lib/utils/error"; import { diff --git a/tsconfig.json b/tsconfig.json index 27886c9..748bc93 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,9 +10,9 @@ "skipLibCheck": true, "strict": true, "ignoreDeprecations": "6.0", - "baseUrl": "src/", + "baseUrl": ".", "paths": { - "@/*": ["./*"] + "@/*": ["./src/*"] }, "noEmit": true, "incremental": true,