Skip to content

Commit 0dcdb62

Browse files
committed
chore: update tsconfig
1 parent 80a5f2e commit 0dcdb62

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

custom/VisionAction.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ import { Dialog, Button } from '@/afcl';
6060
import VisionTable from './VisionTable.vue'
6161
import adminforth from '@/adminforth';
6262
import { useI18n } from 'vue-i18n';
63-
import { AdminUser, type AdminForthResourceCommon } from '@/types';
63+
import { AdminUser, type AdminForthResourceCommon } from '@/types/Common';
6464
import { run } from 'node:test';
6565
6666
const { t } = useI18n();

custom/tsconfig.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,27 @@
44
"paths": {
55
"@/*": [
66
// "node_modules/adminforth/dist/spa/src/*"
7-
"../../../spa/src/*"
7+
"../../../adminforth/spa/src/*"
88
],
99
"*": [
1010
// "node_modules/adminforth/dist/spa/node_modules/*"
11-
"../../../spa/node_modules/*"
11+
"../../../adminforth/spa/node_modules/*"
1212
],
1313
"@@/*": [
1414
// "node_modules/adminforth/dist/spa/src/*"
1515
"."
1616
]
1717
}
18-
}
18+
},
19+
"include": [
20+
"./**/*.ts",
21+
"./**/*.tsx",
22+
"./**/*.vue",
23+
"../**/*.ts",
24+
"../**/*.tsx",
25+
"../**/*.vue",
26+
"../*.vue",
27+
"../*.ts",
28+
"../*.tsx"
29+
]
1930
}

0 commit comments

Comments
 (0)