chore(deps): update dependency typescript to v6#786
Conversation
|
View your CI Pipeline Execution ↗ for commit 8dda24d
☁️ Nx Cloud last updated this comment at |
0a70b1b to
5bc0df3
Compare
4bf0cf6 to
c4f2368
Compare
c4f2368 to
6c070c4
Compare
4352152 to
451dc45
Compare
cc8d010 to
2fcf3b9
Compare
6099882 to
3a72588
Compare
d74db2e to
5de95eb
Compare
5de95eb to
fce192a
Compare
62bba5c to
7299347
Compare
ab00557 to
f5382ce
Compare
There was a problem hiding this comment.
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"],
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
There was a problem hiding this comment.
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 ↗
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
There was a problem hiding this comment.
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"]
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
There was a problem hiding this comment.
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 ↗
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
There was a problem hiding this comment.
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 ↗
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
There was a problem hiding this comment.
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 ↗
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
There was a problem hiding this comment.
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 ↗
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
There was a problem hiding this comment.
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 ↗
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
There was a problem hiding this comment.
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 ↗
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
There was a problem hiding this comment.
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 ↗
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
There was a problem hiding this comment.
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 ↗
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
There was a problem hiding this comment.
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 ↗
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
This PR contains the following updates:
5.9.3→6.0.3Release Notes
microsoft/TypeScript (typescript)
v6.0.3Compare Source
v6.0.2Compare Source
Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.