Skip to content

Commit 4b5cdd5

Browse files
CatchMe2Mateusz Tkacz
andauthored
chore: update tsconfig module to node20 (#732)
* chore: update tsconfig module to node20 * chore: add changelog to tsconfig package * chore: resuce changelog indentation --------- Co-authored-by: Mateusz Tkacz <mateusz.tkacz@lokalise.com>
1 parent 119749f commit 4b5cdd5

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

packages/dev/tsconfig/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## [3.0.0] - 2025-09-04
2+
3+
### ⚠ Breaking Changes
4+
- Updated `module` setting to `Node20` in `tsc` and `tsc-dom` configs.
5+
- Requires **TypeScript >= 5.9.0**.
6+
- More info on Node20 module support: [microsoft/TypeScript#61805](https://github.com/microsoft/TypeScript/issues/61805)

packages/dev/tsconfig/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Shared TypeScript configuration for Lokalise projects.
55
## Getting Started
66

77
### Requirements:
8-
- TypeScript `^5.8.0`
8+
- TypeScript `>=5.9.0`
99
- ESM codebase
1010

1111
### Installation:

packages/dev/tsconfig/configs/tsc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"extends": "./base.json",
44
"compilerOptions": {
5-
"module": "Node18"
5+
"module": "Node20"
66
}
77
}

0 commit comments

Comments
 (0)