Skip to content

Commit

Permalink
feat: upgrade ts to 4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
acrazing committed Jan 17, 2023
1 parent 894e26a commit 3dbe843
Show file tree
Hide file tree
Showing 3 changed files with 523 additions and 462 deletions.
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dpdm",
"version": "3.10.0",
"version": "3.11.0",
"description": "Analyze circular dependencies in your JavaScript/TypeScript projects.",
"keywords": [
"circular",
Expand Down Expand Up @@ -50,27 +50,27 @@
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.6",
"husky": "^8.0.1",
"jest": "^28.1.3",
"@types/jest": "^29.2.5",
"husky": "^8.0.3",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"rollup": "^2.77.0",
"ts-jest": "^28.0.7",
"rollup": "^3.10.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/yargs": "^17.0.10",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.0.0",
"@types/yargs": "^17.0.19",
"chalk": "^4.1.2",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"ora": "^5.4.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"yargs": "^17.6.2"
},
"prettier": {
"printWidth": 80,
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"pretty": true,
"allowUnreachableCode": false,
"stripInternal": true,
"allowUnusedLabels": false
"allowUnusedLabels": false,
"skipLibCheck": true
},
"include": ["./src/**/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx"]
}
Loading

0 comments on commit 3dbe843

Please sign in to comment.