Skip to content

chore(deps): update dependency typescript to v6#786

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/typescript-6.x
Open

chore(deps): update dependency typescript to v6#786
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/typescript-6.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 26, 2026

This PR contains the following updates:

Package Change Age Confidence
typescript (source) 5.9.36.0.3 age confidence

Release Notes

microsoft/TypeScript (typescript)

v6.0.3

Compare Source

v6.0.2

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@nx-cloud
Copy link
Copy Markdown

nx-cloud Bot commented Mar 26, 2026

View your CI Pipeline Execution ↗ for commit 8dda24d

Command Status Duration Result
nx affected -t lint ⛔ Cancelled 1m 6s View ↗

☁️ Nx Cloud last updated this comment at 2026-05-31 05:19:45 UTC

nx-cloud[bot]

This comment was marked as outdated.

@renovate renovate Bot force-pushed the renovate/typescript-6.x branch from 0a70b1b to 5bc0df3 Compare March 29, 2026 21:17
nx-cloud[bot]

This comment was marked as outdated.

@renovate renovate Bot force-pushed the renovate/typescript-6.x branch 2 times, most recently from 4bf0cf6 to c4f2368 Compare March 30, 2026 04:48
nx-cloud[bot]

This comment was marked as outdated.

nx-cloud[bot]

This comment was marked as outdated.

@renovate renovate Bot force-pushed the renovate/typescript-6.x branch from c4f2368 to 6c070c4 Compare March 30, 2026 06:45
nx-cloud[bot]

This comment was marked as outdated.

@renovate renovate Bot force-pushed the renovate/typescript-6.x branch 2 times, most recently from 4352152 to 451dc45 Compare March 30, 2026 15:25
nx-cloud[bot]

This comment was marked as outdated.

@renovate renovate Bot force-pushed the renovate/typescript-6.x branch 10 times, most recently from cc8d010 to 2fcf3b9 Compare April 3, 2026 01:00
nx-cloud[bot]

This comment was marked as outdated.

@renovate renovate Bot force-pushed the renovate/typescript-6.x branch 6 times, most recently from 6099882 to 3a72588 Compare April 5, 2026 09:08
@renovate renovate Bot force-pushed the renovate/typescript-6.x branch 4 times, most recently from d74db2e to 5de95eb Compare April 27, 2026 22:53
nx-cloud[bot]

This comment was marked as outdated.

@renovate renovate Bot force-pushed the renovate/typescript-6.x branch from 5de95eb to fce192a Compare April 28, 2026 01:07
nx-cloud[bot]

This comment was marked as outdated.

@renovate renovate Bot force-pushed the renovate/typescript-6.x branch 2 times, most recently from 62bba5c to 7299347 Compare April 29, 2026 22:15
nx-cloud[bot]

This comment was marked as outdated.

@renovate renovate Bot force-pushed the renovate/typescript-6.x branch 2 times, most recently from ab00557 to f5382ce Compare April 30, 2026 16:44
nx-cloud[bot]

This comment was marked as outdated.

nx-cloud[bot]

This comment was marked as outdated.

nx-cloud[bot]

This comment was marked as outdated.

nx-cloud[bot]

This comment was marked as outdated.

nx-cloud[bot]

This comment was marked as outdated.

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We add "ignoreDeprecations": "6.0" to tsconfig.base.json to fix the TS5101 compilation errors caused by TypeScript 6.0 deprecating the baseUrl compiler option. This single workspace-level change resolves the failures in material-right-sheet:test:ci, json-viewer:test:ci, and route-signals:test:ci, since all libraries inherit from this base config.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci and 1 more.

diff --git a/libs/postcss-custom-container/vitest.config.mts b/libs/postcss-custom-container/vitest.config.mts
index bb4b3e3..94e239b 100644
--- a/libs/postcss-custom-container/vitest.config.mts
+++ b/libs/postcss-custom-container/vitest.config.mts
@@ -10,6 +10,7 @@ export default defineConfig({
     globals: true,
     environment: 'node',
     include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts}'],
+    passWithNoTests: true,
     reporters: ['default'],
     coverage: {
       reportsDirectory: '../../coverage/libs/postcss-custom-container',
diff --git a/tsconfig.base.json b/tsconfig.base.json
index 1ec1f24..2197a67 100644
--- a/tsconfig.base.json
+++ b/tsconfig.base.json
@@ -13,6 +13,7 @@
     "lib": ["es2017", "dom"],
     "skipLibCheck": true,
     "skipDefaultLibCheck": true,
+    "ignoreDeprecations": "6.0",
     "baseUrl": ".",
     "paths": {
       "@dasch-ng/decorators": ["libs/decorators/src/index.ts"],

Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally aIwL-yAOg

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We added "ignoreDeprecations": "6.0" to tsconfig.base.json to resolve the TS5101 errors introduced by the TypeScript 6.0 upgrade. TypeScript 6.0 deprecated the baseUrl compiler option and now raises a hard error unless this flag is set, which was causing build failures across route-signals, json-viewer, and material-right-sheet. Since all projects inherit from tsconfig.base.json, this single-line change fixes all three affected tasks at once.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci and 1 more.

Warning

The suggested diff is too large to display here, but you can view it on Nx Cloud ↗


Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally esYa-EyY4

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We removed the deprecated baseUrl: "." option from tsconfig.base.json to fix the TS5101 errors introduced by the TypeScript 5.9.3 → 6.0.3 upgrade. This option was deprecated in TypeScript 6.0 and caused all inheriting projects to fail. Our change is safe because TypeScript 6.0 now resolves paths relative to the tsconfig file's directory, which is already the workspace root — identical to the previous baseUrl: "." behavior.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci.

Suggested Fix changes
diff --git a/tsconfig.base.json b/tsconfig.base.json
index 1ec1f24..d4ad6f3 100644
--- a/tsconfig.base.json
+++ b/tsconfig.base.json
@@ -13,20 +13,19 @@
     "lib": ["es2017", "dom"],
     "skipLibCheck": true,
     "skipDefaultLibCheck": true,
-    "baseUrl": ".",
     "paths": {
-      "@dasch-ng/decorators": ["libs/decorators/src/index.ts"],
-      "@dasch-ng/gravatar": ["libs/gravatar/src/index.ts"],
-      "@dasch-ng/material-right-sheet": ["libs/material/right-sheet/src/index.ts"],
-      "@dasch-ng/mutation-observer": ["libs/ng/mutation-observer/src/index.ts"],
-      "@dasch-ng/resize-observer": ["libs/ng/resize-observer/src/index.ts"],
-      "@dasch-ng/rxjs-operators": ["libs/rxjs/operators/src/index.ts"],
-      "@dasch-ng/utils": ["libs/ng/utils/src/index.ts"],
-      "@dasch-ng/validators": ["libs/validators/src/index.ts"],
-      "@dasch-ng/json-viewer": ["libs/ng/json-viewer/src/index.ts"],
-      "@dasch-ng/route-signals": ["libs/ng/route-signals/src/index.ts"],
-      "@dasch-ng/web-utils": ["libs/web-utils/src/index.ts"],
-      "@dasch-ng/postcss-custom-container": ["libs/postcss-custom-container/src/index.ts"]
+      "@dasch-ng/decorators": ["./libs/decorators/src/index.ts"],
+      "@dasch-ng/gravatar": ["./libs/gravatar/src/index.ts"],
+      "@dasch-ng/material-right-sheet": ["./libs/material/right-sheet/src/index.ts"],
+      "@dasch-ng/mutation-observer": ["./libs/ng/mutation-observer/src/index.ts"],
+      "@dasch-ng/resize-observer": ["./libs/ng/resize-observer/src/index.ts"],
+      "@dasch-ng/rxjs-operators": ["./libs/rxjs/operators/src/index.ts"],
+      "@dasch-ng/utils": ["./libs/ng/utils/src/index.ts"],
+      "@dasch-ng/validators": ["./libs/validators/src/index.ts"],
+      "@dasch-ng/json-viewer": ["./libs/ng/json-viewer/src/index.ts"],
+      "@dasch-ng/route-signals": ["./libs/ng/route-signals/src/index.ts"],
+      "@dasch-ng/web-utils": ["./libs/web-utils/src/index.ts"],
+      "@dasch-ng/postcss-custom-container": ["./libs/postcss-custom-container/src/index.ts"]
     }
   },
   "exclude": ["node_modules", "tmp"]

Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally YPPb-D3EE

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We add "ignoreDeprecations": "6.0" to the root tsconfig.base.json to resolve the TS5101 deprecation errors introduced by upgrading TypeScript from 5.9.3 to 6.0.3. TypeScript 6.0 deprecated the baseUrl compiler option, and since all library tsconfigs extend the root config, all three test tasks (json-viewer:test:ci, route-signals:test:ci, material-right-sheet:test:ci) were failing with this error. This single-line change suppresses the deprecation using the migration path TypeScript itself recommends.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci.

Warning

The suggested diff is too large to display here, but you can view it on Nx Cloud ↗


Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally PmtJ-10DL

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We added "ignoreDeprecations": "6.0" to tsconfig.base.json to resolve the hard TS5101 error introduced by upgrading TypeScript from 5.9.3 to 6.0.3, which deprecates the baseUrl compiler option. Since all projects extend this root config, a single change fixes all three failing test tasks (json-viewer:test:ci, route-signals:test:ci, material-right-sheet:test:ci).

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci.

Warning

The suggested diff is too large to display here, but you can view it on Nx Cloud ↗


Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally nMsg-haeT

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We added "ignoreDeprecations": "6.0" to tsconfig.base.json to resolve the TS5101 compiler error introduced by upgrading TypeScript from 5.9.3 to 6.0.3. This error occurs because TypeScript 6.0 treats the baseUrl option as deprecated and emits a hard error rather than a warning. Our change silences this error as explicitly instructed by the TypeScript compiler output, allowing all affected test tasks to compile and run successfully.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci.

Warning

The suggested diff is too large to display here, but you can view it on Nx Cloud ↗


Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally UnLH-RV7Z

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We removed the deprecated baseUrl compiler option from tsconfig.base.json to fix the TS5101 errors introduced by upgrading to TypeScript 6.0.3. In TypeScript 6.0, baseUrl is deprecated and causes a build error; paths mappings now resolve relative to the tsconfig file location without needing it. This restores all three failing test tasks without changing any resolution behavior.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci.

Warning

The suggested diff is too large to display here, but you can view it on Nx Cloud ↗


Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally y8bE-J8De

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We added "ignoreDeprecations": "6.0" to tsconfig.base.json to resolve the TS5101 hard error introduced by the TypeScript 6.0 upgrade. This error fires because TypeScript 6.0 marks the baseUrl option as deprecated, and without the flag the compiler refuses to proceed. Since tsconfig.base.json is the shared root config inherited by all projects, this single change fixes all three failing test tasks.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci.

Warning

The suggested diff is too large to display here, but you can view it on Nx Cloud ↗


Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally DaHb-eMcF

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We removed the deprecated baseUrl: "." option from tsconfig.base.json to fix the TS5101 error introduced by the TypeScript 6.0 upgrade. Since paths entries are already expressed relative to the workspace root (which is the same as the tsconfig file location), removing baseUrl has no functional impact. This aligns with the TypeScript 6.0 migration guidance and resolves the build failures across json-viewer:test:ci, route-signals:test:ci, and material-right-sheet:test:ci.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci.

Warning

The suggested diff is too large to display here, but you can view it on Nx Cloud ↗


Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally FUJ2-N5JX

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We added "ignoreDeprecations": "6.0" to tsconfig.base.json to resolve the TypeScript 6.0 TS5101 compilation error, which treats the baseUrl compiler option as deprecated. This fix unblocks all three failing test tasks (route-signals, material-right-sheet, json-viewer) which were failing at the build phase before tests could even run.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci.

Warning

The suggested diff is too large to display here, but you can view it on Nx Cloud ↗


Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally 4Wox-G2oh

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We added "ignoreDeprecations": "6.0" to tsconfig.base.json to fix the TS5101 build errors caused by the TypeScript 6.0 upgrade. TypeScript 6.0 deprecated the baseUrl compiler option and now emits a hard error unless this opt-in flag is present. Since tsconfig.base.json is the root configuration inherited by all projects, this single change resolves the failures in all three affected tasks.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci.

Warning

The suggested diff is too large to display here, but you can view it on Nx Cloud ↗


Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally Pw14-Hrv1

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Copy link
Copy Markdown

@nx-cloud nx-cloud Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Important

At least one additional CI pipeline execution has run since the conclusion below was written and it may no longer be applicable.

Nx Cloud is proposing a fix for your failed CI:

We added "ignoreDeprecations": "6.0" to tsconfig.base.json to resolve the TS5101 compilation error introduced by the TypeScript 5.9→6.0 upgrade. TypeScript 6.0 treats baseUrl as deprecated and emits a hard error unless this option is explicitly set, blocking all affected test tasks. This change follows the TypeScript 6.0 migration path without altering any existing path resolution behavior.

Tip

We verified this fix by re-running route-signals:test:ci, json-viewer:test:ci, material-right-sheet:test:ci.

Warning

The suggested diff is too large to display here, but you can view it on Nx Cloud ↗


Apply fix via Nx Cloud  Reject fix via Nx Cloud


Or Apply changes locally with:

npx nx-cloud apply-locally JtBZ-bCvX

Apply fix locally with your editor ↗   View interactive diff ↗



🎓 Learn more about Self-Healing CI on nx.dev

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants