diff --git a/tsconfig.json b/tsconfig.json index 8363cf45..3fbac7e0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,20 @@ { "compilerOptions": { "jsx": "react-jsx", - "target": "ES2019", + "target": "ES2020", "module": "esnext", "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, "noImplicitAny": false, "skipLibCheck": true, - "lib": ["dom", "dom.iterable", "esnext", "webworker"], + "lib": [ + "ES2020", + "dom", + "dom.iterable", + "esnext", + "webworker" + ], "allowJs": true, "allowSyntheticDefaultImports": true, "noFallthroughCasesInSwitch": true,