Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion scripts/run-lighthouse-budget.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,13 @@ try {
`${JSON.stringify(
{
extends: "../../tsconfig.json",
compilerOptions: { baseUrl: "../..", paths: { "@/*": ["src/*"] } },
compilerOptions: {
// TypeScript 6 deprecates baseUrl (TS5101). Next 16.3+ typechecks this
// isolated config during `next build`, so silence until paths migrate.
ignoreDeprecations: "6.0",
baseUrl: "../..",
paths: { "@/*": ["src/*"] },
},
},
null,
2,
Expand Down
3 changes: 3 additions & 0 deletions scripts/run-playwright.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,9 @@ try {
{
extends: "../../tsconfig.json",
compilerOptions: {
// TypeScript 6 deprecates baseUrl (TS5101). Next 16.3+ typechecks this
// isolated config during `next build`, so silence until paths migrate.
ignoreDeprecations: "6.0",
baseUrl: "../..",
paths: { "@/*": ["src/*"] },
},
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"ignoreDeprecations": "6.0",
"tsBuildInfoFile": "node_modules/.cache/tsc/tsconfig.tsbuildinfo",
"plugins": [
{
Expand Down
Loading