Skip to content

Commit 3e0ba63

Browse files
chore(deps-dev): Bump typescript from 5.9.3 to 6.0.3 (#60)
* chore(deps-dev): 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> * fix(build): TypeScript 6.0 compat for module/plugin tsconfigs - builtin-modules: drop deprecated `baseUrl` (TS5101 under TS6; paths are already relative so resolution is unaffected) - plugins: add explicit `types: ["node"]` — TS6 no longer auto-includes @types/node for the bundler-resolution plugin build, which broke node:* imports, Buffer, NodeJS namespace and setTimeout().unref() Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Simon Davies <simongdavies@users.noreply.github.com>
1 parent ba56881 commit 3e0ba63

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

builtin-modules/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"noEmitOnError": true,
1414
"skipLibCheck": true,
1515
"typeRoots": ["src/types"],
16-
"baseUrl": ".",
1716
"paths": {
1817
"ha:doc-core": ["./src/doc-core.ts"],
1918
"ha:ooxml-core": ["./src/ooxml-core.ts"],

package-lock.json

Lines changed: 4 additions & 2 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
@@ -53,7 +53,7 @@
5353
"pngjs": "^7.0.0",
5454
"prettier": "^3.8.1",
5555
"tsx": "^4.0.0",
56-
"typescript": "^5.8.0",
56+
"typescript": "^6.0.3",
5757
"vitest": "^4.0.18"
5858
},
5959
"overrides": {

plugins/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"noEmitOnError": true,
1414
"skipLibCheck": true,
1515
"esModuleInterop": true,
16+
"types": ["node"],
1617
"paths": {
1718
"../../src/plugin-system/schema-types.js": ["../plugin-schema-types.ts"]
1819
}

0 commit comments

Comments
 (0)