Skip to content

Commit cc18f8c

Browse files
authored
Merge pull request #429 from WomB0ComB0/renovate/typescript-6.x
chore(deps): update dependency typescript to v6
2 parents bd52453 + e3b9fee commit cc18f8c

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

e2e/accessibility/a11y.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ test.describe('Accessibility', () => {
249249

250250
const headingLevels = await page.evaluate(() => {
251251
const headings = document.querySelectorAll('h1, h2, h3, h4, h5, h6');
252-
return Array.from(headings).map((h) => Number.parseInt(h.tagName[1], 10));
252+
return Array.from(headings).map((h) => Number.parseInt(h.tagName.charAt(1), 10));
253253
});
254254

255255
// Check for major skipped levels (more than 3 levels is a severe issue)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@
223223
"prettier-plugin-packagejson": "3.0.2",
224224
"prettier-plugin-tailwindcss": "0.7.2",
225225
"tailwindcss": "^4.1.18",
226-
"typescript": "5.9.3"
226+
"typescript": "6.0.2"
227227
},
228228
"os": [
229229
"linux",

tsconfig.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,6 @@
6161
],
6262
"exclude": [
6363
"node_modules",
64-
"**/*.spec.ts",
65-
"**/*.spec.tsx",
66-
"**/*.test.ts",
67-
"**/*.test.tsx",
6864
"public/**/*.js",
6965
"dist/**/*",
7066
".sanity/**/*",

0 commit comments

Comments
 (0)