Skip to content

Commit

Permalink
upgrade to typescript 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kamiazya committed Aug 26, 2023
1 parent 029b699 commit a1b0e36
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 20 deletions.
5 changes: 1 addition & 4 deletions examples/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"type": "module",
"devDependencies": {
"typescript": "^5.1.3"
}
"type": "module"
}
16 changes: 5 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"lint-staged": "^13.2.3",
"prettier": "2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.2"
}
Expand Down
3 changes: 0 additions & 3 deletions packages/pluggable-io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,5 @@
},
"dependencies": {
"@pluggable-io/preset-standard": "^0.0.0"
},
"devDependencies": {
"typescript": "^5.1.3"
}
}
4 changes: 2 additions & 2 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"module": "Node16",
"moduleResolution": "Node16",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": false,
"tsBuildInfoFile": ".tsbuildinfo"
}
}
}

0 comments on commit a1b0e36

Please sign in to comment.