升级TypeScript版本至3.6或更高版本,以支持BigInt类型。 示例代码:
// TypeScript 3.6 或更高版本 const bigNumber = BigInt(100);
// TypeScript 3.5.* const bigNumber = 100n; // 会报错:BigInt不支持TypeScript版本3.5.*
上一篇:BigInt.toString()如何处理非常大的BigInt?
下一篇:BigInt储存分配错误(数字+1)