Browse Source

Merge branch 'main' into feature/optimize-dialog-sizes-for-mobile

pull/3964/head
Thomas Kaul 10 months ago
committed by GitHub
parent
commit
ba33271c8b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 3
      apps/api/tsconfig.app.json

4
CHANGELOG.md

@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Optimized the dialog sizes for mobile (full screen)
### Fixed
- Fixed the warning `export was not found` in connection with `GetValuesParams`
## 2.117.0 - 2024-10-19
### Added

3
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"]

Loading…
Cancel
Save