Skip to content

Commit 6de1864

Browse files
Merge PR #15
feat: adjust module and moduleResolution defaults
2 parents 55fb88e + d38736a commit 6de1864

4 files changed

Lines changed: 16 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 2.0.0 - 2025-4-13
2+
3+
This pull request includes updates to the `packages/lib/config.json` configuration file to change the module resolution strategy.
4+
Configuration updates:
5+
* [`packages/lib/config.json`](diffhunk://#diff-0c81b2177887592c6dc72ebc072fb2c3549bf853837d2f440c05e29ad6c8887dL4-R5): Changed the `moduleResolution` setting from `node` to `bundler` to align with the new module resolution strategy.
6+
7+
18
# 1.13.11 - 2025-4-13
29

310
Here you specify what exactly will be added to the changelog of the new version.

packages/lib/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 2.0.0 - 2025-4-13
2+
3+
This pull request includes updates to the `packages/lib/config.json` configuration file to change the module resolution strategy.
4+
Configuration updates:
5+
* [`packages/lib/config.json`](diffhunk://#diff-0c81b2177887592c6dc72ebc072fb2c3549bf853837d2f440c05e29ad6c8887dL4-R5): Changed the `moduleResolution` setting from `node` to `bundler` to align with the new module resolution strategy.
6+
7+
18
# 1.13.11 - 2025-4-13
29

310
Here you specify what exactly will be added to the changelog of the new version.

packages/lib/config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"compilerOptions": {
33
// Target and module settings
4-
"target": "ESNext",
54
"module": "ESNext",
6-
"moduleResolution": "node",
5+
"moduleResolution": "bundler",
76
"lib": ["ESNext", "DOM"],
87
// Strictness & type checking
98
"strict": true, // Enables all strict type-checking options below

packages/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@omariosouto/tsconfig",
3-
"version": "1.13.11",
3+
"version": "2.0.0",
44
"main": "index.json",
55
"license": "MIT",
66
"repository": "https://github.com/omariosouto/tsconfig",

0 commit comments

Comments
 (0)