Browse Source
Bugfix/fix export was not found warning (#3963)
* Fix export was not found warning
* Update changelog
---------
Signed-off-by: Dominik Willner <th33xitus@gmail.com>
pull/3964/head^2
dw-0
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
8 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/tsconfig.app.json
|
@ -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/), |
|
|
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). |
|
|
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 |
|
|
## 2.117.0 - 2024-10-19 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
@ -4,7 +4,8 @@ |
|
|
"outDir": "../../dist/out-tsc", |
|
|
"outDir": "../../dist/out-tsc", |
|
|
"types": ["node"], |
|
|
"types": ["node"], |
|
|
"emitDecoratorMetadata": true, |
|
|
"emitDecoratorMetadata": true, |
|
|
"target": "es2021" |
|
|
"target": "es2021", |
|
|
|
|
|
"module": "commonjs" |
|
|
}, |
|
|
}, |
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"], |
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"], |
|
|
"include": ["**/*.ts"] |
|
|
"include": ["**/*.ts"] |
|
|