From e34dd056b3340c26d749bbcfa249d83cc68d64eb Mon Sep 17 00:00:00 2001 From: porink0424 Date: Wed, 17 Apr 2024 16:56:50 +0900 Subject: [PATCH] Replace target es5 -> es6 in tsconfig --- optuna_dashboard/tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/optuna_dashboard/tsconfig.json b/optuna_dashboard/tsconfig.json index fff5b65f..11568355 100644 --- a/optuna_dashboard/tsconfig.json +++ b/optuna_dashboard/tsconfig.json @@ -1,7 +1,6 @@ { "compilerOptions": { "baseUrl": ".", - "skipLibCheck": true, "strictNullChecks": true, "moduleResolution": "node", "noUnusedLocals": true, @@ -16,7 +15,7 @@ "module": "esnext", "esModuleInterop": true, "allowSyntheticDefaultImports": true, - "target": "es5", + "target": "es6", "jsx": "react", "sourceMap": true, "strict": true