出问题的代码:
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即可,含义是不使用严格模式。