Skip to content

Commit

Permalink
fix(build): update typescript configuration
Browse files Browse the repository at this point in the history
- fix broken `tsconfig`
  • Loading branch information
cgawron committed Jul 4, 2024
1 parent 8f44855 commit 6c881d9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
7 changes: 1 addition & 6 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.1",
"semantic-release": "^23.0.5",
"typescript": "^5.4.3"
"typescript": "^5.5.3"
}
}
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"compilerOptions": {
"outDir": "./dist/",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"module": "ES2022",
"moduleResolution": "Node",
"esModuleInterop": true,
"target": "ES2022",
"types": [
"node"
Expand Down

0 comments on commit 6c881d9

Please sign in to comment.