Refactor imports to use package names instead of aliases

Replaced all path alias imports (e.g., '@/napcat-core') with direct package imports (e.g., 'napcat-core/index') across napcat-common, napcat-core, and napcat-webui-backend. This improves compatibility with tooling and workspace resolution, and aligns with standard TypeScript/Node.js import practices.
This commit is contained in:
手瓜一十雪
2025-11-14 14:34:27 +08:00
parent 6e9f448a0c
commit c8fd66fa9b
15 changed files with 18 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
import type { LoginListItem, SelfInfo } from '@/napcat-core';
import type { OneBotConfig } from '@/napcat-onebot/config/config';
import type { LoginListItem, SelfInfo } from 'napcat-core';
import type { OneBotConfig } from 'napcat-onebot/config/config';
interface LoginRuntimeType {
LoginCurrentTime: number;