Update tsconfig target to ES2020

This commit is contained in:
Labhansh Agrawal 2021-04-07 15:39:17 +05:30
parent 1748873ae2
commit ef8350a68b

View file

@ -3,13 +3,8 @@
"allowJs": true,
"checkJs": false,
"composite": true,
"downlevelIteration": true,
"esModuleInterop": true,
"jsx": "react",
"lib": [
"dom",
"es2017"
],
"module": "commonjs",
"moduleResolution": "node",
"preserveConstEnums": true,
@ -17,7 +12,7 @@
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "es2018",
"target": "ES2020",
"typeRoots": [
"./node_modules/@types"
]