fix(tsconfig): Update TypeScript configs to ES2022 and remove deprecated compiler flags
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"experimentalDecorators": true,
|
||||
"target": "ES2020",
|
||||
"module": "ES2020",
|
||||
"target": "ES2022",
|
||||
"module": "ES2022",
|
||||
"moduleResolution": "node12",
|
||||
"useDefineForClassFields": false,
|
||||
"preserveValueImports": true,
|
||||
"esModuleInterop": true
|
||||
}
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## 2025-11-17 - 2.5.2 - fix(tsconfig)
|
||||
Update TypeScript configs to ES2022 and remove deprecated compiler flags
|
||||
|
||||
- assets/tsconfig.json: set target and module to ES2022 (was ES2020)
|
||||
- assets/tsconfig.json and tsconfig.json: remove experimentalDecorators and useDefineForClassFields flags to align with updated TS setup
|
||||
|
||||
## 2025-06-26 - 2.5.1 - fix(readme)
|
||||
Update license and legal information section in readme
|
||||
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@git.zone/tsbundle',
|
||||
version: '2.5.1',
|
||||
version: '2.5.2',
|
||||
description: 'a multi-bundler tool supporting esbuild, rolldown, and rspack for painless bundling of web projects'
|
||||
}
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"experimentalDecorators": true,
|
||||
"useDefineForClassFields": false,
|
||||
"target": "ES2022",
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
|
||||
Reference in New Issue
Block a user