Skip to content

Commit

Permalink
chore: fix deno.jsonc
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Aug 21, 2024
1 parent 3a955b9 commit d2075df
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
"version": "0.0.0",
"exports": {
".": "./mod.ts",
"./type": "./type.ts",
"./assert": "./assert.ts",
"./ensure": "./ensure.ts",
"./maybe": "./maybe.ts",
"./as": "./as/mod.ts",
"./as/optional": "./as/optional.ts",
"./as/readonly": "./as/readonly.ts",
"./assert": "./assert.ts",
"./ensure": "./ensure.ts",
"./is": "./is/mod.ts",
"./is/any": "./is/any.ts",
"./is/array": "./is/array.ts",
Expand Down Expand Up @@ -49,7 +47,9 @@
"./is/undefined": "./is/undefined.ts",
"./is/uniform-tuple-of": "./is/uniform_tuple_of.ts",
"./is/union-of": "./is/union_of.ts",
"./is/unknown": "./is/unknown.ts"
"./is/unknown": "./is/unknown.ts",
"./maybe": "./maybe.ts",
"./type": "./type.ts"
},
"exclude": [
".coverage/**"
Expand All @@ -61,6 +61,7 @@
"LICENSE"
],
"exclude": [
"**/*_bench.ts",
"**/*_test.ts",
".*"
]
Expand Down

0 comments on commit d2075df

Please sign in to comment.