Skip to content

Commit 0abecfd

Browse files
authored
Merge pull request #249 from runk/renovate/typescript-6.x
chore(deps): update dependency typescript to v6
2 parents b24d5a8 + 95f796e commit 0abecfd

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [16.x, 18.x, 20.x, 22.x]
15+
node-version: [20.x, 22.x, 24.x]
1616

1717
steps:
1818
- uses: actions/checkout@v6

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ permissions:
88
id-token: write # Required for OIDC / npm trusted publishing
99
contents: write # To create releases
1010

11-
1211
jobs:
1312
release:
1413
name: Release

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2025 Dmitry Shirokov
3+
Copyright (c) 2026 Dmitry Shirokov
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"semantic-release": "^25.0.0",
2828
"sinon": "21.0.3",
2929
"ts-node": "^10.4.0",
30-
"typescript": "5.9.3"
30+
"typescript": "6.0.2"
3131
},
3232
"repository": {
3333
"type": "git",
@@ -54,7 +54,6 @@
5454
"test:imports": "node test/imports/commonjs.js && node test/imports/esm.mjs && ts-node test/imports/typescript.ts",
5555
"format": "prettier --write src",
5656
"format:check": "prettier --check src",
57-
"prepublish": "npm run build",
5857
"semantic-release": "semantic-release"
5958
}
6059
}

tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
"module": "commonjs",
55
"target": "es2021",
66
"outDir": "lib",
7+
"rootDir": "src",
78

89
"strict": true,
910
"declaration": true,
1011
"esModuleInterop": true,
1112
"forceConsistentCasingInFileNames": true,
1213
"strictPropertyInitialization": false,
14+
"types": ["node", "mocha"]
1315
},
1416
"exclude": [
1517
"__mocks__",

0 commit comments

Comments
 (0)