Skip to content

Commit 8d84f27

Browse files
Bump typescript from 5.9.3 to 6.0.3 (#26)
* Bump typescript from 5.9.3 to 6.0.3 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.3. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v5.9.3...v6.0.3) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.3 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Change moduleResolution to NodeNext in tsconfig * Change module target from 'ESNext' to 'NodeNext' --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Samu Lang <langsamu@users.noreply.github.com>
1 parent a94f274 commit 8d84f27

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"@types/n3": "^1",
4646
"@types/node": "^24",
4747
"n3": "^2",
48-
"typescript": "^5"
48+
"typescript": "^6"
4949
},
5050
"engines": {
5151
"node": ">=24.0.0"

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
33
"target": "ES2022",
4-
"module": "ESNext",
5-
"moduleResolution": "node",
4+
"module": "NodeNext",
5+
"moduleResolution": "NodeNext",
66
"allowSyntheticDefaultImports": true,
77
"esModuleInterop": true,
88
"allowJs": true,

0 commit comments

Comments
 (0)