diff --git a/assets/templates/tsconfig_update/tsconfig.json b/assets/templates/tsconfig_update/tsconfig.json index dfe5a55..d76da25 100644 --- a/assets/templates/tsconfig_update/tsconfig.json +++ b/assets/templates/tsconfig_update/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "experimentalDecorators": true, + "emitDecoratorMetadata": true, "useDefineForClassFields": false, "target": "ES2022", "module": "NodeNext", diff --git a/changelog.md b/changelog.md index 4ff79c3..a4e1eb5 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index bc4de74..1285160 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.11.0', + version: '1.12.0', description: 'A CLI toolbelt to streamline local development cycles by using various gitzone utilities.' }