Use es 2020 for bigint

This commit is contained in:
F 2021-10-26 16:53:01 +11:00 committed by Franck
parent f6e7c63257
commit 96353fef0f
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -1,7 +1,7 @@
{
"compilerOptions": {
"incremental": true,
"target": "es2017",
"target": "es2020",
"outDir": "build/main",
"rootDir": "src",
"moduleResolution": "node",
@ -41,7 +41,7 @@
// "experimentalDecorators": true /* Enables experimental support for ES7 decorators. */,
// "emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */,
"lib": ["es2017", "dom"],
"lib": ["es2020", "dom"],
"types": ["node", "mocha"],
"typeRoots": ["node_modules/@types", "src/types"]
},