Skip to content

Commit 8c1c527

Browse files
committed
Upgrade typescript to latest
1 parent 0ed9931 commit 8c1c527

File tree

4 files changed

+46
-71
lines changed

4 files changed

+46
-71
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -15,39 +15,13 @@ updates:
1515
update-types:
1616
- minor
1717
- patch
18-
# Group TypeScript-related packages
19-
typescript:
20-
patterns:
21-
- "typescript"
22-
- "@types/*"
23-
update-types:
24-
- minor
25-
- patch
26-
# Group webpack and build tools
27-
build-tools:
28-
patterns:
29-
- "webpack*"
30-
- "*-loader"
31-
- "ts-loader"
32-
update-types:
33-
- minor
34-
- patch
35-
# Group testing packages
36-
testing:
37-
patterns:
38-
- "@vscode/test-*"
39-
- "mocha"
40-
- "glob"
41-
update-types:
42-
- minor
43-
- patch
4418
# Group ESLint and linting packages
4519
linting:
4620
patterns:
4721
- "eslint"
4822
- "eslint-*"
4923
- "@eslint/*"
50-
- "@typescript-eslint/*"
24+
- "typescript-eslint"
5125
update-types:
5226
- minor
5327
- patch

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"process": "^0.11.10",
111111
"sinon": "^17.0.1",
112112
"tmp": "^0.2.3",
113-
"typescript": "^4.6.3",
113+
"typescript": "^5.9.3",
114114
"typescript-eslint": "^8.33.0",
115115
"util": "^0.12.4"
116116
},

pnpm-lock.yaml

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"removeComments": true,
1111
"lib": ["ES2020"],
1212
"sourceMap": true,
13-
"rootDir": "src"
13+
"rootDir": "src",
14+
"skipLibCheck": true
1415
},
1516
"exclude": ["node_modules", ".vscode-test", "test-fixtures"],
1617
"include": [

0 commit comments

Comments
 (0)