From a7d349a71a0fb57e70b72917f9bb851ad12a68f9 Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Sat, 17 Jul 2021 19:42:32 -0600 Subject: [PATCH] Updated ES to 2019/2020 and local default.json is ignored for reloads when in dev mode --- tsconfig.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 46666c7e..a21d862d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,16 +10,19 @@ "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, - "target": "es2015", + "target": "es2019", "resolveJsonModule": true, "esModuleInterop": true, "typeRoots": [ "node_modules/@types" ], "lib": [ - "es2016", + "es2019", "dom" ], "module": "es2020" - } + }, + "exclude": [ + "assets/default.json" + ], } \ No newline at end of file