Skip to content

Commit

Permalink
fix(build): fix tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubilmax committed Oct 17, 2023
1 parent ad89d52 commit cbc2f2a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ethers-maths",
"version": "4.0.0",
"version": "5.0.0",
"description": "➗ Useful ethers-based math libraries to ease the journey through off-chain fixed-point arithmetics",
"main": "lib/index.js",
"files": [
Expand Down Expand Up @@ -136,4 +136,4 @@
]
}
}
}
}
8 changes: 3 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
{
"compilerOptions": {
"incremental": true,
"target": "esnext",
"module": "commonjs",
"declaration": true,
"module": "nodenext",
"moduleResolution": "nodenext",
"outDir": "lib",
"strict": true,
"declaration": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": ["src", "test"]
Expand Down

0 comments on commit cbc2f2a

Please sign in to comment.