文章目录
- 问题
- 分析
问题
运行 npm run build 报错:error TS7026: JSX element implicitly has type
分析
-
在使用typescript的时候,在vue或react、node中报以上错误,是JSX 元素隐式具有类型 “any”,因为不存在全局类型 “JSX.Element”。
-
处理的办法有二种:
-
不使用严格的类型检查,即在 tsconfig.json 中设置 “strict”: false
-
在 tsconfig.json中设置 “noImplicitThis”: false
"noImplicitAny": false, // 是否在表达式和声明上有隐含的any类型时报错