Skip to content

Commit 0fe2d08

Browse files
dependabot[bot]Copilotwaldekmastykarz
authored
Bump typescript from 5.9.3 to 6.0.2 (#116)
* Bump typescript from 5.9.3 to 6.0.2 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v5.9.3...v6.0.2) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update tsconfig.json for TypeScript 6.0 compatibility - Change module from "esnext" to "nodenext" - Change moduleResolution from "Node" (deprecated node10) to "nodenext" - Add types: ["node"] for Node.js type definitions Agent-Logs-Url: https://github.com/dev-proxy-tools/mcp/sessions/0dfc89e3-a3e2-48a6-82ab-d7f7d4c2bcbe Co-authored-by: waldekmastykarz <11164679+waldekmastykarz@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: waldekmastykarz <11164679+waldekmastykarz@users.noreply.github.com>
1 parent 2a877db commit 0fe2d08

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555
"devDependencies": {
5656
"@types/node": "^24.12.0",
5757
"rimraf": "^6.1.3",
58-
"typescript": "^5.9.3"
58+
"typescript": "^6.0.2"
5959
}
6060
}

tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"compilerOptions": {
33
"target": "esnext",
4-
"module": "esnext",
5-
"moduleResolution": "Node",
4+
"module": "nodenext",
5+
"moduleResolution": "nodenext",
6+
"types": ["node"],
67
"lib": ["esnext", "dom", "dom.iterable"],
78
"allowSyntheticDefaultImports": true,
89
"sourceMap": true,

0 commit comments

Comments
 (0)