From 4c658a1f6a72e58d2f9216f96ba6784ddc460f2c Mon Sep 17 00:00:00 2001 From: dw-0 Date: Sun, 20 Oct 2024 17:23:29 +0200 Subject: [PATCH] Bugfix/fix export was not found warning (#3963) * Fix export was not found warning * Update changelog --------- Signed-off-by: Dominik Willner --- CHANGELOG.md | 6 ++++++ apps/api/tsconfig.app.json | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95799269c..707d32f1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Fixed + +- Fixed the warning `export was not found` in connection with `GetValuesParams` + ## 2.117.0 - 2024-10-19 ### Added 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"]