Add support for BigInt literals in javascript code validation #60517
Labels
javascript
JavaScript support issues
upstream
Issue identified as 'upstream' component related (exists outside of VS Code)
Chrome now supports the type BigInt for javascript code. This includes support for BigInt literals:
var n = 13135151n;
Visual Studio tags these literals as syntax errors. Coders can avoid these errors by instead using:
var n = BigInt("1313515");
It would be great if Visual Studio supported the literal notation.
The text was updated successfully, but these errors were encountered: