我有一个简单的 TS 项目,这是我的tsconfig.json
{
"compilerOptions": {
"target": "es2020",
"lib": ["es2020"],
}
}
我有一个文件,script.ts
里面有以下代码
BigInt(2);
不幸的是,当我执行时tsc script.ts
,我收到此错误:
Cannot find name 'BigInt'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2020' or later.
为什么会这样?我的库不是设置为正确的版本吗?