Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9a071ce82f | |||
| ad227ded73 |
@@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-11-27 - 3.1.1 - fix(compiler)
|
||||||
|
Update default TypeScript target to ES2024
|
||||||
|
|
||||||
|
- Default compiler option 'target' changed from ScriptTarget.ESNext to ScriptTarget.ES2024 in ts/tsbuild.classes.tsbuild.ts
|
||||||
|
- Aligns emitted code to ES2024 language features by default
|
||||||
|
|
||||||
## 2025-11-17 - 3.1.0 - feat(tsbuild.classes)
|
## 2025-11-17 - 3.1.0 - feat(tsbuild.classes)
|
||||||
Update default TypeScript lib to lib.esnext.d.ts
|
Update default TypeScript lib to lib.esnext.d.ts
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tsbuild",
|
"name": "@git.zone/tsbuild",
|
||||||
"version": "3.1.0",
|
"version": "3.1.1",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.",
|
"description": "A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tsbuild',
|
name: '@git.zone/tsbuild',
|
||||||
version: '3.1.0',
|
version: '3.1.1',
|
||||||
description: 'A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.'
|
description: 'A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ export const compilerOptionsDefault: CompilerOptions = {
|
|||||||
noEmitOnError: true,
|
noEmitOnError: true,
|
||||||
outDir: 'dist_ts/',
|
outDir: 'dist_ts/',
|
||||||
module: plugins.typescript.ModuleKind.NodeNext,
|
module: plugins.typescript.ModuleKind.NodeNext,
|
||||||
target: plugins.typescript.ScriptTarget.ESNext,
|
target: plugins.typescript.ScriptTarget.ES2024,
|
||||||
moduleResolution: plugins.typescript.ModuleResolutionKind.NodeNext,
|
moduleResolution: plugins.typescript.ModuleResolutionKind.NodeNext,
|
||||||
lib: ['lib.dom.d.ts', 'lib.esnext.d.ts'],
|
lib: ['lib.dom.d.ts', 'lib.esnext.d.ts'],
|
||||||
noImplicitAny: false, // Allow implicit any by default
|
noImplicitAny: false, // Allow implicit any by default
|
||||||
|
|||||||
Reference in New Issue
Block a user