From 092bd74476b56480181834a3bc27b5f5a4bed38b Mon Sep 17 00:00:00 2001 From: Soeun/Sona Lee Date: Sat, 26 Jun 2021 16:51:16 +0900 Subject: [PATCH] Fix Safe Navigation issue (#217) Change from 'esnext' to 'es2019' --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index e10899527..4a3270716 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "sourceMap": true, - "target": "esnext", + "target": "ES2019", "removeComments": false, "allowSyntheticDefaultImports": true, "declaration": true,