From 6de1291efaf8f831237cb5fe870c5c7af93d0185 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 18 Jul 2024 23:23:23 +0300 Subject: [PATCH] server-esm: Configure for dynamic imports --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index b8e0605f4..daa0c7e49 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,8 @@ { "compilerOptions": { "moduleResolution": "Bundler", - "module": "ES2015", - "target": "ES2018", + "module": "ES2022", + "target": "ES2020", "declaration": false, "sourceMap": true, "outDir": "./build",