Skip to content

Commit

Permalink
feat(pkg): update tsconfig
Browse files Browse the repository at this point in the history
BREAKING CHANGE: tsconfig changed
  • Loading branch information
Rubilmax committed Oct 17, 2023
1 parent 04eb3c9 commit 8bdcd90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ethers-multicall-provider",
"version": "4.3.0",
"version": "5.0.0",
"description": "⚡🕰️ Drop-in solution to batch smart contract RPC calls in a single RPC query via Multicall!",
"main": "lib/index.js",
"files": [
Expand Down
7 changes: 3 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"compilerOptions": {
"target": "es2015",
"moduleResolution": "node",
"target": "es6",
"module": "nodenext",
"moduleResolution": "nodenext",
"outDir": "lib",
"rootDir": ".",
"baseUrl": ".",
"strict": true,
"sourceMap": true,
"declaration": true,
"esModuleInterop": true,
"resolveJsonModule": true
Expand Down

0 comments on commit 8bdcd90

Please sign in to comment.