Skip to content

Commit 3dbe843

Browse files
committed
feat: upgrade ts to 4.9
1 parent 894e26a commit 3dbe843

File tree

3 files changed

+523
-462
lines changed

3 files changed

+523
-462
lines changed

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dpdm",
3-
"version": "3.10.0",
3+
"version": "3.11.0",
44
"description": "Analyze circular dependencies in your JavaScript/TypeScript projects.",
55
"keywords": [
66
"circular",
@@ -50,27 +50,27 @@
5050
},
5151
"license": "MIT",
5252
"devDependencies": {
53-
"@types/jest": "^28.1.6",
54-
"husky": "^8.0.1",
55-
"jest": "^28.1.3",
53+
"@types/jest": "^29.2.5",
54+
"husky": "^8.0.3",
55+
"jest": "^29.3.1",
5656
"npm-run-all": "^4.1.5",
57-
"prettier": "^2.7.1",
57+
"prettier": "^2.8.3",
5858
"pretty-quick": "^3.1.3",
59-
"rollup": "^2.77.0",
60-
"ts-jest": "^28.0.7",
59+
"rollup": "^3.10.0",
60+
"ts-jest": "^29.0.5",
6161
"ts-node": "^10.9.1"
6262
},
6363
"dependencies": {
64-
"@types/fs-extra": "^9.0.13",
65-
"@types/glob": "^7.2.0",
66-
"@types/yargs": "^17.0.10",
64+
"@types/fs-extra": "^11.0.1",
65+
"@types/glob": "^8.0.0",
66+
"@types/yargs": "^17.0.19",
6767
"chalk": "^4.1.2",
68-
"fs-extra": "^10.1.0",
69-
"glob": "^8.0.3",
68+
"fs-extra": "^11.1.0",
69+
"glob": "^8.1.0",
7070
"ora": "^5.4.1",
71-
"tslib": "^2.4.0",
72-
"typescript": "^4.7.4",
73-
"yargs": "^17.5.1"
71+
"tslib": "^2.4.1",
72+
"typescript": "^4.9.4",
73+
"yargs": "^17.6.2"
7474
},
7575
"prettier": {
7676
"printWidth": 80,

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
"pretty": true,
3737
"allowUnreachableCode": false,
3838
"stripInternal": true,
39-
"allowUnusedLabels": false
39+
"allowUnusedLabels": false,
40+
"skipLibCheck": true
4041
},
4142
"include": ["./src/**/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx"]
4243
}

0 commit comments

Comments
 (0)