From 859f8fb026d04174f2146ffc75f04929f0d5e86c Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Thu, 30 Apr 2026 12:54:44 +0000 Subject: [PATCH] fix(build): remove the deprecated --allowimplicitany flag from the build script --- changelog.md | 5 +++++ package.json | 2 +- ts/00_commitinfo_data.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 0ffb849..8340382 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-04-30 - 3.3.3 - fix(build) +remove the deprecated --allowimplicitany flag from the build script + +- updates the package.json build script to run tsbuild --web without the extra compiler flag + ## 2026-03-24 - 3.3.2 - fix(config) migrate project metadata and documentation to .smartconfig.json diff --git a/package.json b/package.json index 456038b..7c80128 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ }, "scripts": { "test": "(tstest test/ --web)", - "build": "(tsbuild --web --allowimplicitany)", + "build": "(tsbuild --web)", "buildDocs": "tsdoc" }, "devDependencies": { diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 6e93a53..109f737 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tswatch', - version: '3.3.2', + version: '3.3.3', description: 'A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.' }