Vue ts项目打包提示--不能找到组件文件的声明文件

115 阅读1分钟

新建一个项目,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.

image.png

原因就是引入的组件setup没有加lang=ts, 加了后就可以正常打包了

<template>
  <n-button>naive-ui</n-button>
</template>

//加上lang="ts"就可以正常打包了
<script setup lang="ts">
import { NButton } from 'naive-ui'
</script>

image.png

参考链接 stackoverflow.com/questions/7…