Skip to content

Commit

Permalink
fix: update tsconfig to avoid build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Polybius93 committed Jun 3, 2024
1 parent be2abe3 commit 3962176
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 293 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "dlc-btc-lib",
"version": "1.0.6",
"version": "1.0.7",
"description": "This library provides a comprehensive set of interfaces and functions for minting dlcBTC tokens on supported blockchains.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -38,8 +38,6 @@
"author": "DLC.Link",
"license": "ISC",
"devDependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.28.6",
"@ledgerhq/hw-transport-webusb": "^6.28.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/prompts": "^2.4.9",
Expand Down
42 changes: 0 additions & 42 deletions src/functions/hardware-wallet/ledger-functions.ts

This file was deleted.

5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"outDir": "./dist",
"rootDir": "./src",
"skipLibCheck": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"declaration": true
}
},
"include": ["src/**/*.ts"],
"exclude": ["tests"]
}
Loading

0 comments on commit 3962176

Please sign in to comment.