From 5461cf712859e7bb80362f1f31a6e16562e66e19 Mon Sep 17 00:00:00 2001 From: mahulst Date: Mon, 20 Jun 2022 09:24:46 +0200 Subject: [PATCH] Change module target to prevent import issues due to class properties --- tsconfig.module.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.module.json b/tsconfig.module.json index dfb74fa..1c7a0de 100644 --- a/tsconfig.module.json +++ b/tsconfig.module.json @@ -1,7 +1,7 @@ { "extends": "./tsconfig", "compilerOptions": { - "target": "esnext", + "target": "ES2021", "outDir": "build/module", "module": "esnext" },