uni-app的vscode报找不到@路径模块以及找不到vue的模块定义问题
需要在src文件下增加一个.d.ts文件写入
declare module "*.vue" {
import Vue from 'vue'
export default Vue
}
即可
JSX 元素隐式具有类型 "any",因为不存在接口 "JSX.IntrinsicElements"。ts(7026)两个解决方案在tsconfig.json不使用严格检查{ "compilerOptions": {
"strict": false
}}或者加这个{ "compilerOptions": {
"noImplicitAny": false, // 是否在表达式和声明上有隐含的any类型时报错
转载自:https://segmentfault.com/a/1190000041919319