Remove unused path aliases from tsconfig files

Deleted redundant or unused path alias entries from tsconfig.json in napcat-core, napcat-onebot, and napcat-plugin packages to simplify TypeScript configuration and avoid confusion.
This commit is contained in:
手瓜一十雪 2025-11-14 14:37:43 +08:00
parent c8fd66fa9b
commit b85f9197e3
3 changed files with 0 additions and 14 deletions

View File

@ -36,9 +36,6 @@
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@core/*": [
"*"
],
"@/napcat-core/*": [
"*"
]

View File

@ -36,9 +36,6 @@
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@onebot/*": [
"*"
],
"@/napcat-onebot/*": [
"*"
]

View File

@ -35,14 +35,6 @@
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@onebot/*": [
"*"
],
"@/napcat-onebot/*": [
"*"
]
},
"skipLibCheck": true,
"skipDefaultLibCheck": true
},