vue3 构建项目配置路由 router 的时候,因对某个类重命名后抛出如下异常
该目录不在项目的文件列表中,项目必须列出所有文件,或使用"include"模式
解决办法
前往 tsconfig.node.json 文件中对 include 新增 scr/icons/* 即可
{"extends": "./tsconfig.app.json","exclude": [],"compilerOptions": {"composite": true,"lib": [],"types": ["node", "jsdom"]},"include": ["src/icons/",]
}
以上便是此次分享的全部内容,希望能对大家有所帮助!