問題タブ [ecmascript-2020]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - es2020に関係なく、TSプロジェクトでBigIntを使用できません
私はこれが私の単純なTSプロジェクトを持っていますtsconfig.json
そして、script.ts
次のコードを含む1つのファイルがあります
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.
なぜそれが起こっているのですか?ライブラリが正しいバージョンに設定されていませんか?