Skip to content
Open
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
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"playwright": "^1.61.0",
"storybook": "^10.5.5",
"tailwindcss": "^4.1.0",
"typescript": "^5.6.0",
"typescript": "^6.0.3",
"vite": "^7.0.0",
"vitest": "^3.2.7",
"vitest-browser-react": "^1.0.0"
Expand Down
9 changes: 5 additions & 4 deletions apps/web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
"verbatimModuleSyntax": true,
"noEmit": true,
"types": ["vite/client", "@vitest/browser/providers/playwright"],
// Deliberately no `baseUrl` — TypeScript 7 removed it (TS5102). Without it,
// `paths` values resolve relative to THIS file, which the self-relative
// "./src/*" below already assumes. Bundler resolution is separate: the "@"
// alias is declared in vite.config.ts and vitest.config.ts.
// Deliberately no `baseUrl` — TypeScript 6 already rejects it (TS5101) and 7
// removed it outright (TS5102). Without it, `paths` values resolve relative to
// THIS file, which the self-relative "./src/*" below already assumes. Bundler
// resolution is separate: the "@" alias is declared in vite.config.ts and
// vitest.config.ts.
"paths": {
"@/*": ["./src/*"]
}
Expand Down
16 changes: 8 additions & 8 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

140 changes: 140 additions & 0 deletions docs/migrations/2026-08-31-typescript.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"husky": "^9.1.7",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.68.0",
"zod": "4.5.4"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"test:watch": "vitest"
},
"dependencies": {
"@typescript-eslint/utils": "^8.61.1"
"@typescript-eslint/utils": "^8.68.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/parser": "^8.61.1",
"@typescript-eslint/rule-tester": "^8.61.1",
"@typescript-eslint/parser": "^8.68.0",
"@typescript-eslint/rule-tester": "^8.68.0",
"tsup": "^8.5.1",
"typescript": "^5.6.0",
"typescript": "^6.0.3",
"vitest": "^3.2.7"
},
"peerDependencies": {
Expand Down
4 changes: 4 additions & 0 deletions packages/eslint-plugin/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
// tsup 8.5.1's --dts build unconditionally injects `baseUrl: compilerOptions.baseUrl || "."`
// (tsup/dist/rollup.js), which TS 6 rejects with TS5101. No tsconfig here sets baseUrl.
// Drop this once tsup stops injecting it.
"ignoreDeprecations": "6.0",
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/harness/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
"@types/bun": "^1.1.0",
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"typescript": "^5.6.0"
"typescript": "^6.0.3"
}
}
4 changes: 4 additions & 0 deletions packages/harness/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
// tsup 8.5.1's --dts build unconditionally injects `baseUrl: compilerOptions.baseUrl || "."`
// (tsup/dist/rollup.js), which TS 6 rejects with TS5101. No tsconfig here sets baseUrl.
// Drop this once tsup stops injecting it.
"ignoreDeprecations": "6.0",
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
Expand Down
Loading