首页 前端知识 解决ts报错TSError: ⨯ Unable to compile TypeScript

解决ts报错TSError: ⨯ Unable to compile TypeScript

2024-07-10 22:07:39 前端知识 前端哥 404 187 我要收藏

出问题的代码:

let xx: number[]
let yy = {"x": xx}

报错细节:TS2454: Variable 'xx' is used before being assigned.

解决

方式1:修改代码

let xx: number[] = []
let yy = {"x": xx}

方式2:修改配置

给tsconfig.json中compilerOptions下,新增如下配置:

"strict": false,

如果已经有,修改为false即可,含义是不使用严格模式。

转载请注明出处或者链接地址:https://www.qianduange.cn//article/13941.html
标签
评论
发布的文章

jQuery-w3school(2020

2024-08-04 23:08:08

jQuery常用方法总结

2024-08-04 23:08:34

Vue2使用echarts树图(tree)

2024-08-04 23:08:29

图表库-Echarts

2024-08-04 23:08:57

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!