From c148d344231f277bdf0acf2698ee2c75e95f8e4b Mon Sep 17 00:00:00 2001 From: Junyoung Choi Date: Tue, 3 Nov 2020 11:30:40 +0900 Subject: [PATCH] Fix target and lib again --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 3289d06fd..2ae941948 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "exclude": ["dist", "node_modules"], "compilerOptions": { "allowSyntheticDefaultImports": true, - "target": "es2018", + "target": "es2019", "downlevelIteration": true, "importHelpers": true, "sourceMap": true, @@ -12,7 +12,7 @@ "jsx": "react", "allowJs": true, "checkJs": false, - "lib": ["dom", "esnext", "es2020"], + "lib": ["dom", "esnext"], "forceConsistentCasingInFileNames": true, "experimentalDecorators": true, "noUnusedParameters": true,