Skip to content

Commit

Permalink
chore: upgrade version of typescript to 5.6.2
Browse files Browse the repository at this point in the history
Signed-off-by: Valeriy Svydenko <vsvydenk@redhat.com>
  • Loading branch information
svor committed Sep 19, 2024
1 parent bb0a26b commit d8c371e
Show file tree
Hide file tree
Showing 3 changed files with 1,141 additions and 1,270 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
"typescript": "^5.6.2"
},
"prettier": {
"printWidth": 120,
Expand Down
10 changes: 8 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
{
"compilerOptions": {
"target": "ES2023",
"module": "commonjs",
"esModuleInterop": true,
"experimentalDecorators": true,
"lib": [
"ES2017",
"ES2023",
],
"sourceMap": true,
"rootDir": "src",
"outDir": "lib",
"types": [
"node", "jest"
"node", "jest", "reflect-metadata"
],
"moduleResolution": "node",
"resolveJsonModule": true,
},
"include": [
"src"
],
"exclude": [
"node_modules",
]
}
Loading

0 comments on commit d8c371e

Please sign in to comment.