From 1fde80de8e2912fa85b97348f71f249aee0a462e Mon Sep 17 00:00:00 2001 From: Jan Jakes Date: Tue, 10 May 2022 14:11:07 +0200 Subject: [PATCH] Allow all modern features in TS code (TS only checks types, Babel transpiles) [MAILPOET-4323] --- tsconfig.base.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index a9f81f23e3..f10bb647c6 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,7 +1,7 @@ { "compilerOptions": { "module": "commonjs", - "target": "es5", + "target": "esnext", "moduleResolution": "node", "esModuleInterop": true, "resolveJsonModule": true,