diff --git a/assets/templates/tsconfig_update/tsconfig.json b/assets/templates/tsconfig_update/tsconfig.json index d76da25..c5d2810 100644 --- a/assets/templates/tsconfig_update/tsconfig.json +++ b/assets/templates/tsconfig_update/tsconfig.json @@ -1,8 +1,6 @@ { "compilerOptions": { - "experimentalDecorators": true, "emitDecoratorMetadata": true, - "useDefineForClassFields": false, "target": "ES2022", "module": "NodeNext", "moduleResolution": "NodeNext", diff --git a/changelog.md b/changelog.md index c95ab62..fb40a0a 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-11-17 - 1.21.4 - fix(tsconfig template) +Remove experimentalDecorators and useDefineForClassFields from tsconfig template + +- Removed experimentalDecorators option from assets/templates/tsconfig_update/tsconfig.json +- Removed useDefineForClassFields option from assets/templates/tsconfig_update/tsconfig.json + ## 2025-11-17 - 1.21.3 - fix(assets/templates/multienv) Remove unused Bun configuration template (assets/templates/multienv/bunfig.toml) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index f22493a..c7bf953 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.3', + version: '1.21.4', 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.' }