From 48ef66e689c751ac9d36b61b52693d223d744a90 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 31 Oct 2021 14:28:43 +0200 Subject: [PATCH] feat: use TS moduleResolution node12 to retain dynamic imports in compiled code --- backend/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index 23f838e2..cbd901aa 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "moduleResolution": "node", + "moduleResolution": "node12", "module": "commonjs", "noImplicitAny": false, "allowSyntheticDefaultImports": true,