From 0b307e49df22a835b4bfa85118962d0285d27fe4 Mon Sep 17 00:00:00 2001 From: dw-0 Date: Sat, 19 Oct 2024 23:13:22 +0200 Subject: [PATCH] fix: warning: export was not found Signed-off-by: Dominik Willner --- apps/api/tsconfig.app.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/api/tsconfig.app.json b/apps/api/tsconfig.app.json index a0c17b4fa..655120714 100644 --- a/apps/api/tsconfig.app.json +++ b/apps/api/tsconfig.app.json @@ -4,7 +4,8 @@ "outDir": "../../dist/out-tsc", "types": ["node"], "emitDecoratorMetadata": true, - "target": "es2021" + "target": "es2021", + "module": "commonjs" }, "exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"], "include": ["**/*.ts"]