fix(build): remove deprecated allowimplicitany flag from build script

This commit is contained in:
2026-04-30 12:53:41 +00:00
parent caa6d96c32
commit d0842d013c
3 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog
## 2026-04-30 - 2.0.3 - fix(build)
remove deprecated allowimplicitany flag from build script
- Updates the package build script to invoke tsbuild without the extra allowimplicitany option.
## 2026-03-24 - 2.0.2 - fix(build)
migrate package metadata to smartconfig and refresh build configuration
+1 -1
View File
@@ -13,7 +13,7 @@
"scripts": {
"test": "(pnpm run build && node ./cli.js test/test.js sayhello)",
"format": "(gitzone format)",
"build": "(tsbuild --allowimplicitany)",
"build": "(tsbuild)",
"buildDocs": "tsdoc"
},
"devDependencies": {
+1 -1
View File
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tsrun',
version: '2.0.2',
version: '2.0.3',
description: 'run typescript programs efficiently'
}