Skip to content

Commit

Permalink
chore: fix usage of import and require type
Browse files Browse the repository at this point in the history
  • Loading branch information
crutchcorn committed Nov 29, 2024
1 parent bf39f70 commit 1e7fec0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion knip.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"ignoreDependencies": ["@angular/compiler-cli"]
},
"packages/store": {
"ignore": ["src/tests/derived.bench.ts", "ts-5/index.d.ts"],
"ignore": ["src/tests/derived.bench.ts"],
"ignoreDependencies": [
"@angular/core",
"@preact/signals",
Expand Down
6 changes: 3 additions & 3 deletions packages/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/store.git",
"url": "git+https://github.com/TanStack/store.git",
"directory": "packages/store"
},
"homepage": "https://tanstack.com/store",
Expand Down Expand Up @@ -48,13 +48,13 @@
"exports": {
".": {
"import": {
"types@>=5.0": "./ts-5/index.v5.d.ts",
"types": "./dist/esm/index.d.ts",
"types@>=5.0": "./ts-5/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types@>=5.0": "./ts-5/index.v5.d.cts",
"types": "./dist/cjs/index.d.cts",
"types@>=5.0": "./ts-5/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
Expand Down

0 comments on commit 1e7fec0

Please sign in to comment.