feat(build): Update TypeScript configuration to support emit decorator metadata

This commit is contained in:
Philipp Kunz 2025-01-17 17:48:56 +01:00
parent eb1498c242
commit fad5e046d3
3 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,7 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "NodeNext",

View File

@ -1,5 +1,10 @@
# Changelog
## 2025-01-17 - 1.12.0 - feat(build)
Update TypeScript configuration to support emit decorator metadata
- Added emitDecoratorMetadata to the tsconfig.json template in assets/templates/tsconfig_update.
## 2025-01-08 - 1.11.0 - feat(cli)
Add Docker command for cleaning up Docker system and extend deprecation command for multiple registries

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/cli',
version: '1.11.0',
version: '1.12.0',
description: 'A CLI toolbelt to streamline local development cycles by using various gitzone utilities.'
}