新建一个项目,Vue+Vite+Ts,引入naive-ui一个组件打包,提示,
Could not find a declaration file for module './components/HelloWorld.vue'. '/Users/gongzemin/Documents/playground/greaterBayArea/src/components/HelloWorld.vue' implicitly has an 'any' type.
原因就是引入的组件setup没有加lang=ts, 加了后就可以正常打包了
<template>
<n-button>naive-ui</n-button>
</template>
//加上lang="ts"就可以正常打包了
<script setup lang="ts">
import { NButton } from 'naive-ui'
</script>