Skip to content

Commit

Permalink
#6 add types for require, upgrade package version
Browse files Browse the repository at this point in the history
  • Loading branch information
koppa96 committed Mar 29, 2024
1 parent 3e93824 commit 09c82e9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
{
"name": "linq-functional",
"type": "module",
"version": "1.0.1",
"version": "1.0.2",
"description": "A functional adaptation of C#'s LINQ, for building type safe, declarative queries.",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
}
},
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit 09c82e9

Please sign in to comment.