fix(auto-import-resolver): type mismatch in TS projects (#12243)

This commit is contained in:
neverland 2023-09-03 09:47:29 +08:00 committed by GitHub
parent 5ccaa836ee
commit 56b718f597
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ export function VantResolver(options: VantResolverOptions = {}) {
const moduleType = getModuleType(ssr); const moduleType = getModuleType(ssr);
return { return {
type: 'component', type: 'component' as const,
resolve: (name: string) => { resolve: (name: string) => {
if (name.startsWith('Van')) { if (name.startsWith('Van')) {
const partialName = name.slice(3); const partialName = name.slice(3);