From 6304953234663934a72adda5c7ccb581924ec0b6 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Mon, 17 Nov 2025 11:52:13 +0000 Subject: [PATCH] fix(tsconfig): Remove emitDecoratorMetadata from tsconfig template --- assets/templates/tsconfig_update/tsconfig.json | 1 - changelog.md | 6 ++++++ ts/00_commitinfo_data.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/assets/templates/tsconfig_update/tsconfig.json b/assets/templates/tsconfig_update/tsconfig.json index c5d2810..70d3f34 100644 --- a/assets/templates/tsconfig_update/tsconfig.json +++ b/assets/templates/tsconfig_update/tsconfig.json @@ -1,6 +1,5 @@ { "compilerOptions": { - "emitDecoratorMetadata": true, "target": "ES2022", "module": "NodeNext", "moduleResolution": "NodeNext", diff --git a/changelog.md b/changelog.md index fb40a0a..86865a6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-11-17 - 1.21.5 - fix(tsconfig) +Remove emitDecoratorMetadata from tsconfig template + +- Removed the "emitDecoratorMetadata" compiler option from assets/templates/tsconfig_update/tsconfig.json +- This updates the tsconfig template to avoid emitting decorator metadata when targeting ES2022 + ## 2025-11-17 - 1.21.4 - fix(tsconfig template) Remove experimentalDecorators and useDefineForClassFields from tsconfig template diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index c7bf953..5776c41 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/cli', - version: '1.21.4', + version: '1.21.5', description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.' }