Skip to content

Commit

Permalink
Bump jsbt
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Jun 27, 2024
1 parent be00daf commit 9e764e1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
8 changes: 4 additions & 4 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 @@ -29,7 +29,7 @@
},
"license": "MIT",
"devDependencies": {
"@paulmillr/jsbt": "0.1.0",
"@paulmillr/jsbt": "0.2.0",
"@scure/base": "1.1.3",
"fast-check": "3.0.0",
"micro-bmark": "0.3.1",
Expand Down
12 changes: 4 additions & 8 deletions tsconfig.esm.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
{
"extends": "@paulmillr/jsbt/tsconfigs/esm.json",
"extends": "@paulmillr/jsbt/tsconfig.esm.json",
"compilerOptions": {
"outDir": "esm",
"baseUrl": ".",
"outDir": "esm",
"paths": {
"@noble/ciphers/crypto": [
"src/crypto.ts"
]
},
"declaration": true,
"declarationMap": true
}
},
"include": [
"index.ts",
"src"
],
"exclude": [
"node_modules",
"lib"
"node_modules"
]
}
16 changes: 11 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
{
"extends": "@paulmillr/jsbt/tsconfigs/cjs.json",
"extends": "@paulmillr/jsbt/tsconfig.cjs.json",
"compilerOptions": {
"outDir": ".",
"baseUrl": ".",
"outDir": ".",
"paths": {
"@noble/ciphers/crypto": ["src/crypto.ts"]
"@noble/ciphers/crypto": [
"src/crypto.ts"
]
}
},
"include": ["index.ts", "src"],
"exclude": ["node_modules", "lib"]
"include": [
"src"
],
"exclude": [
"node_modules"
]
}

0 comments on commit 9e764e1

Please sign in to comment.