问题
一个vue3 ts项目,前端构建工具是vite,在执行npm run build命令时出现TS7016错误:
main.ts:5:18 - error TS7016: Could not find a declaration file for module './Demo.vue'
解决方法
翻阅了网上的一些资料,发现可以通过修改tsconfig.json来解决该问题。我项目里的tsconfig.json文件内容如下:
{
"files": [],
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.app.json"
}
]
}