我开始了一个新的 Deno 项目并遇到了错误
const users = [
{ name: 'Oby', age: 12 },
{ name: 'Heera', age: 32 },
];
const loggedInUser = users.find((u) => u.name === 'Oby');
console.log(loggedInUser.age);
$ deno run hello.ts
Compile file:///Users/yangshun/Downloads/deno-test/hello.ts
error: TS2532 [ERROR]: Object is possibly 'undefined'.
console.log(loggedInUser.age);
这是由"strictNullChecks": true
TypeScript 配置引起的。因此,我想使用我自己的tsconfig.json
(TypeScript 配置),但不知道如何去做。