Skip to content

Commit

Permalink
Update deno config
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Mar 3, 2025
1 parent 4e995f2 commit 6a95c56
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
6 changes: 4 additions & 2 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json",
"nodeModulesDir": "auto",
"workspace": [
"./packages/as-sha256",
Expand All @@ -7,8 +8,9 @@
"./packages/simpleserialize.com",
"./packages/ssz"
],
"tasks": {
"test": "deno task --filter ssz test:unit"
"compilerOptions": {
"noImplicitOverride": false,
"types": ["node"]
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3"
Expand Down
8 changes: 8 additions & 0 deletions packages/as-sha256/deno.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json",
"version": "1.0.0",
"name": "@chainsafe/as-sha256",
"exports": {
".": "./src/index.ts"
}
}
8 changes: 8 additions & 0 deletions packages/ssz/deno.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json",
"name": "@chainsafe/ssz",
"version": "1.0.2",
"exclude": [
"test"
]
}

0 comments on commit 6a95c56

Please sign in to comment.