Skip to content

Commit

Permalink
Add source maps
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Feb 2, 2023
1 parent 5d978f4 commit 39f6256
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
"version": "1.1.4",
"description": "Secure, audited & minimal implementation of BIP32 hierarchical deterministic (HD) wallets",
"files": [
"index.ts",
"lib/index.js",
"lib/esm/index.js",
"lib/index.d.ts",
"lib/esm/package.json"
"lib/index.js.map",
"lib/esm/package.json",
"lib/esm/index.js",
"lib/esm/index.js.map"
],
"main": "lib/index.js",
"module": "lib/esm/index.js",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"module": "es6",
"moduleResolution": "node",
"outDir": "lib/esm",
"sourceMap": true,
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
Expand Down
2 changes: 2 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"module": "commonjs",
"moduleResolution": "node",
"outDir": "lib",
"declaration": true,
"sourceMap": true,
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
Expand Down

0 comments on commit 39f6256

Please sign in to comment.